微软 visual studio 2012 C++
Microsoft visual studio 2012 c++
我正在从零开始学习 C++,我正在尝试使用以下代码制作 hello world 程序:
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World" << endl;
return 0;
}
但我总是以"this project is out of date"结尾
当我尝试构建它时出现此错误消息:
无法启动程序 'c:\users\User\documents\visualstudio2012\projects\Consoleapplication3\Debug\ConsoleApplication3.exe'。
系统找不到指定的文件
如果您不包含默认 #include <iostream>
,您的程序应该会失败,这意味着您的代码应该是这样的:
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World" << endl;
return 0;
}
这些表示,要解决您的问题,请查看左侧的 solution explorer
框。确保那里确实有一个 .cpp
文件。您可以通过查看存储项目 .sln
文件的 .cpp
文件来执行相同的操作。如果没有,则会出现该错误。
添加 cpp
文件时,您要使用 "add new item" 图标。 (左上角有一个金星,将鼠标悬停在它上面可以看到名称)出于某种原因 Ctrl+N 实际上并没有将 .cpp
文件添加到项目中。
来源:System cannot find specified file
我正在从零开始学习 C++,我正在尝试使用以下代码制作 hello world 程序:
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World" << endl;
return 0;
}
但我总是以"this project is out of date"结尾 当我尝试构建它时出现此错误消息:
无法启动程序 'c:\users\User\documents\visualstudio2012\projects\Consoleapplication3\Debug\ConsoleApplication3.exe'。 系统找不到指定的文件
如果您不包含默认 #include <iostream>
,您的程序应该会失败,这意味着您的代码应该是这样的:
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World" << endl;
return 0;
}
这些表示,要解决您的问题,请查看左侧的 solution explorer
框。确保那里确实有一个 .cpp
文件。您可以通过查看存储项目 .sln
文件的 .cpp
文件来执行相同的操作。如果没有,则会出现该错误。
添加 cpp
文件时,您要使用 "add new item" 图标。 (左上角有一个金星,将鼠标悬停在它上面可以看到名称)出于某种原因 Ctrl+N 实际上并没有将 .cpp
文件添加到项目中。
来源:System cannot find specified file