#include
using namespace std;
int main ()
{
cout <<"\n hell world!"<
return 0;
}
return 0 前加 cin.get()
cou完 就return0了 程序结束了当然会自动 关闭 cmd窗口啦
#include
using namespace std;
int main ()
{
cout <<"\n hell world!";
cin.get();
return 0;
}
在return 0;前加一句:int i;cin>>i;