我的xcode会编译但不允许我输入任何内容
#include <iostream>
using namespace std;
bool truthStatement;
int main (int argc, const char * argv[])
{
string name;
cout << "What is your name?" << endl;
cin >> name;
if (name == "Matt"){
cout << "You're cool" << endl;
} else {
cout << "You suck" << endl;
}
}
答案 0 :(得分:0)
我以前遇到过这个问题。确保使用的是Return键而不是键盘上的Enter键。