我找了很长时间才能看到根据你的内容显示不同文字的代码。我没有在我想要制作的应用程序上工作很长时间,但是我认为这是我尝试过的(请记住我' ma begginer) :
char text
cout << "Insert Text: " << text << endl;
if (text== "Stop")
{
cout << "Ok. Bye!" << endl;
}
答案 0 :(得分:0)
你需要使用cin从用户那里获得一些东西。 char也意味着一个单一字符&#39;。改为使用字符串
std::string text;
cout << "Insert Text: " << endl;
cin >> text;
if (text == "Stop")
{
cout << "Ok. Bye!" << endl;
}