C++高手来
我用Dev编了个程序,结果最后一闪就没了,程序代码为
#include<iostream>
int main()
{
std::cout<<"hello World.\n";
}
怎么弄啊?
参考答案:经典的初学者问题,相信很多人都遇到过类似的问题吧;后面加上cin等待用户输入些东西而不直接退出就行
#include<iostream>
int main()
{
int a;
std::cout<<"hello World.\n";
std::cin>>a;
}
我用Dev编了个程序,结果最后一闪就没了,程序代码为
#include<iostream>
int main()
{
std::cout<<"hello World.\n";
}
怎么弄啊?
参考答案:经典的初学者问题,相信很多人都遇到过类似的问题吧;后面加上cin等待用户输入些东西而不直接退出就行
#include<iostream>
int main()
{
int a;
std::cout<<"hello World.\n";
std::cin>>a;
}