这是你的程序执行完,窗口关闭了。
在main函数return 0之前加上system("pause");暂停一下。
如下:
#include using namespace std; int main(){ cout<<"hello world!"< system("pause"); return 0;}
你应该按Ctrl+F5