Xcode不接受用户输入!

时间:2011-05-28 21:29:10

标签: xcode user-input

我的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;
    }

}

1 个答案:

答案 0 :(得分:0)

我以前遇到过这个问题。确保使用的是Return键而不是键盘上的Enter键。