我第一次使用 Visual C++(也是这门语言的新手)——体验过 C#……所以我有了我在 Visual Studio 中启动的第一个控制台应用程序。
#include "stdafx.h"
#include <iostream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
int i;
cin >> i;
return 0;
}
当我按下回车键时,控制台窗口 - 因此应用程序 - 为什么没有关闭?没有其他输入 - 只需输入...
exit()
更重要的是,如果我只是按 Enter键,如何使应用程序退出(不想使用)正确?