有谁知道为什么我的Hello世界不会打印任何东西?
这是我到目前为止所经历的过程:
这是我的代码
#include <iostream>
using namespace std;
int main() {
cout << "Hello World!" << endl;
return 0;
cin.get();
}
按下ctrl + 5并构建后我得到的图片。
答案 0 :(得分:5)
return 0
行将在cin.get()
执行之前结束该程序。
翻转return 0
和cin.get()
。