-2

这是我收到的信息

无法启动程序 C:\Users\Documents\Visual Studio 2010\Projects\EULER'S Fixed\Debug\EULER'S Fixed.exe

该系统找不到指定的文件。

这是构建输出

1>------ Build started: Project: EULER'S Fixed, Configuration: Debug Win32 ------
1>LINK : error LNK2001: unresolved external symbol _mainCRTStartup
1>C:\Users\adicpluplu\Documents\Visual Studio 2010\Projects\EULER'S Fixed\Debug\Debug\EULER'S Fixed.exe : fatal error LNK1120: 1 unresolved externals
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
4

3 回答 3

0

Select the properties for the file in which main is defined and make sure "item type" under "General" (under Configuration Properties) is set to "c/c++ compiler"

于 2012-07-07T17:11:28.170 回答
0

当您在第一次编译之前未能保存所有内容时,您会收到该消息。

我认为这是 2010 年的一个缺陷。创建一个新项目,或向项目中添加文件或从项目中删除文件实际上并没有保存。您必须在它们真正存在之前手动保存。

于 2012-07-06T20:13:10.430 回答
0

您错过了定义 main:

int main()
{
     //..
     return 0;
}
于 2012-07-06T20:10:27.173 回答