你好,,麻烦问一下,我运行c++程序的时候,只有一个DOS界面一闪而过,没有输出,这是怎么回事?望指教。

2025-04-05 10:56:25
推荐回答(3个)
回答1:

#include
using namespace std;
int main ()
{
cout <<"\n hell world!"<system("pause");/*暂停的语句,然后系统会提示你按任意键继续*/
return 0;
}

回答2:

return 0 前加 cin.get()
cou完 就return0了 程序结束了当然会自动 关闭 cmd窗口啦

#include
using namespace std;
int main ()
{
cout <<"\n hell world!";
cin.get();
return 0;
}

回答3:

在return 0;前加一句:int i;cin>>i;