我正在按照本教程为Visual Studio创建C ++ Hello World应用程序。
https://tutorials.visualstudio.com/cpp-console/install
我已经安装了软件,选择了“ Windows控制台应用程序”,并从教程中复制/粘贴了Hello World程序:
#include "stdafx.h"
#include <iostream>
using namespace std;
int main()
{
cout << "Hello, world!\n";
return 0;
}
但是,当我尝试运行本地Windows调试器时,出现此错误:
无法打开程序。 \ repos \ HelloWorld \ Debug \ HelloWorld.exe 系统找不到指定的文件。
我将如何包含.exe文件?
另外,我有一个错误“无法打开stdafx.h”,但我认为已与此连接。
编辑:
我删除了“ #include“ stdafx.h””,并得到了相同的错误。它还说文件意外结束,建议我#include“ pch.h”,所以我这样做了。
#include <iostream>
#include "pch.h"
using namespace std;
int main()
{
cout << "Hello, world!\n";
return 0;
}
我仍然收到无法找到.exe的错误...而且'cout'是未声明的标识符。