我决定今天试试 Visual Studio 2012 Express。首先要做的是写“Hello world!” 应用程序,但是,我无法使其工作。我创建了一个 Windows 控制台应用程序项目,编写了标准代码,但它导致了运行时错误。
这是我的代码:
#include <iostream>
using namespace std;
int main()
{
cout << "Hello world!" << endl;
system("pause");
return 0;
}
看起来有些东西坏了(也许我错过了什么?)。它在第 7 行出现运行时错误:
http://img443.imageshack.us/img443/7497/coutbroken.png
请问有什么帮助吗?:)