-1

所以我试图让用户输入他们的名字和身高。

我有其他代码。

我有这个。

#include <iostream> 
#include <string> 
#include <algorithm> 
using namespace std; 

int main() 
{ 
int name1; 
cout << "What's your name?"; 
cin >> name1; 

int height1; 
cout << "What's your height?"; 
cin >> height1; 

return 0; 
} 

问题是它不允许用户输入他们的身高。有任何想法吗?

4

1 回答 1

6

问题是,您使用的是 int 变量而不是 std::string。但是,您已经包含了<string>头文件,因此您可能想要这样做:

#include <iostream> 
#include <string> 
#include <algorithm> 
using namespace std; 

int main() 
{ 
std::string name1; 
cout << "What's your name?"; 
cin >> name1; 

std::string height1; 
cout << "What's your height?"; 
cin >> height1; 

return 0; 
} 

否则,它仅在您输入整数时才有效 - 但这对于“名称”输入没有多大意义。

编辑:如果您还要求输入带有空格的名称,您可以使用std::getline

#include <iostream> 
#include <string> 
#include <algorithm> 
using namespace std; 

int main() 
{ 
std::string name1; 
cout << "What's your name?"; 
getline(cin, name1);

std::string height1; 
cout << "What's your height?"; 
getline(cin, height1);

return 0; 
} 
于 2013-10-29T16:14:45.370 回答