我正在用C++編寫程序並做了一些試驗。我包含了system('pause')
函數。現在顯然我無法關閉該程序。我如何撤消它並退出程序?我真的需要重新啓動我的電腦嗎?如何撤消系統(「暫停」)
基本上我惡作劇我的自我。這裏是src代碼
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
char answer;
cout << "Can gh0st be VIP?:(y=Yes/n=No)";
cout << endl;
cin >> answer;
if (answer == 'y')
{
cout << "thanx ande =)";
cout << endl;
}
else if (answer == 'n')
{
cout << "time to pay ande ahaha!\a\a\a\a\a\a\a...*with at least 200 more of these*";
cout << endl;
}
else
cout << "just put the letter y or n lol try it again";
cout << endl;
system("pause");
return 0;
}
重新啓動是不夠的。你需要買一個新的。 (提示:不是真的,不是真的需要一個新的,不是真的需要重新啓動) – Amit
你有沒有嘗試按下回車鍵?或者你重定向了輸入。 – Guvante
噢,一些代碼畢竟......你知道你的代碼中沒有'system(「pause」)'嗎? –