你好,,麻烦问一下,我运行c++程序的时候,只有一个DOS界面一闪而过,没有输出,这是怎么回事?望指教。
比如这个程序#include<iostream>usingnamespacestd;intmain(){cout<<"\nhellworld!";return0;}...
比如这个程序
#include <iostream>
using namespace std;
int main ()
{
cout <<"\n hell world!";
return 0;
} 展开
#include <iostream>
using namespace std;
int main ()
{
cout <<"\n hell world!";
return 0;
} 展开
展开全部
#include <iostream>
using namespace std;
int main ()
{
cout <<"\n hell world!"<<endl;
system("pause");/*暂停的语句,然后系统会提示你按任意键继续*/
return 0;
}
using namespace std;
int main ()
{
cout <<"\n hell world!"<<endl;
system("pause");/*暂停的语句,然后系统会提示你按任意键继续*/
return 0;
}
追问
你好,好像vc++6.0不需要加system("pause")这句,是吗
追答
在vc++6.0调试 不需要加system("pause")这句
编译成.exe 就需要不然就是一闪而过什么都看不到
展开全部
return 0 前加 cin.get()
cou完 就return0了 程序结束了当然会自动 关闭 cmd窗口啦
#include <iostream>
using namespace std;
int main ()
{
cout <<"\n hell world!";
cin.get();
return 0;
}
cou完 就return0了 程序结束了当然会自动 关闭 cmd窗口啦
#include <iostream>
using namespace std;
int main ()
{
cout <<"\n hell world!";
cin.get();
return 0;
}
追问
你好,我在问一下我记得vc++6.0好像不加cin.get()。cin.get()会不会有安全问题
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在return 0;前加一句:int i;cin>>i;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询