gpt4 book ai didi

c++ - 为什么 C++ 中的 "Press Enter to Continue"代码不起作用?

转载 作者:太空狗 更新时间:2023-10-29 22:59:19 24 4
gpt4 key购买 nike

所以,我正在用 C++ 为 children 制作一个简单的测验程序(我真的是编程的初学者)。我想做的是要求用户在第一个问题后按 Enter,只有在按 enter 后,第二个问题才可见。但由于某些原因,C++ 不会等待用户在 cin 语句中输入输出,而是自动打印下一个问题。

代码如下:

cout << "Q1. Which of these languages is not used to make Computer Software?" << endl;
cout << "a. Python" << endl;
cout << "b. Java" << endl;
cout << "c. C++" << endl;
cout << "d. HTML" << endl;
cout << "" << endl;
cin >> ans;
cout << "" << endl;
cout << "Press Enter to Continue";
cin.ignore();

最佳答案

在为ans 提供一些数据后,您可能已经输入了“enter”。在这种情况下,cin.ignore() 将读取“enter”并立即返回。因此,您需要另一个 cin.ignore() 来等待另一个“输入”。

关于c++ - 为什么 C++ 中的 "Press Enter to Continue"代码不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37234253/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com