Example 1.exe - 0 error(s), 0 warning(s) cannot execute program

刚开始学C++ 为什么按着书上打出程序 却无法执行
#include <iostream.h>
int main();//most compilers don't need this line
int main()
{
cout <<"Hello World!\n";
return 0;
}
-------------------Configuration: Example 1 - Win32 Debug-----------
Example 1.exe - 0 error(s), 0 warning(s)
cannot execute program

VC++ 编译器,没问题。

源程序扩展名要叫 cpp. 例如 Example1.cpp, 文件名不带空白。

头文件推荐的标准写法,不带 .h, 外加 using:
#include <iostream>
using namespace std;
温馨提示:内容为网友见解,仅供参考
第1个回答  2010-01-13
#include <iostream>
using namespace std;
int main();//most compilers don't need this line
int main()
{
cout <<"Hello World!\n";
return 0;
}
第2个回答  2010-01-13
应该是编译环境的问题,换个编译器试试,或者是编译器版本的问题...

...error(s), 0 warning(s) cannot execute program
源程序扩展名要叫 cpp. 例如 Example1.cpp, 文件名不带空白。头文件推荐的标准写法,不带 .h, 外加 using:include <iostream> using namespace std;

...6.0 编c语言 编译后出现yxy.obj - 1 error(s), 0 warning(s...
可能很多人在安装VC 6.0后有过点击“Compile”或者“Build”后被出现的 “Compiling... ,Error spawning cl.exe”错误提示给郁闷过。很多人的 选择是重装,实际上这个问题很多情况下是由于路径设置的问题引起的,“CL.exe”是VC使用真正的编译器(编译程序),其路径在“VC根目录\\VC98\\Bin”下面,...

RAS(四)Intel MCA-Uncorrected Recoverable
Hardware errors are considered UCR errors if IA32_MCG_CAP[24] is set, and the IA32_MCi_STATUS register's corresponding bits are set:Valid (bit 63) = 1UC (bit 61) = 1PCC (bit 57) = 0The fault address can be obtained by reading IA32_MCi_MISC and IA32_MCi_ADDR registers...

为什么我家的电脑游戏运行时出个什么应用程序初始化失败(0xc0000005...
开始-运行- 输入cmd-- 回车,在命令提示符下输入下面命令 for %1 in (%windir%\\system32\\*.dll) do regsvr32.exe \/s %1 怕输入错误,可以复制这条指令,然后在命令提示符后击鼠标右键,打“粘贴”,回车,耐心等待,直到屏幕滚动停止为止。 (2)运行regedit进入注册表, 在HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Wi...

this program cannot be run in dos made 什么意思
该程序只能运行在UNIX系统上,不能在Windows系统上运行。

请问Windows10 安装MySQL到execute时出现维护 有修复和卸载俩选项但试...
问题一:当各位在安装、重装时出现could not start the service mysql error:0原因: 卸载mysql时并没有完全删除相关文件和服务,需要手动清除。安装到最后一步execute时不能启动服务的解决方法:首先,在管理工具->服务里面将MySQL的服务给停止(有的是没有安装成功,有这个服务,但是已经停止了的),win+R...

Appium超时错误连接到驱动程序时问题,怎么解决
问题 1. error: Failed to start an Appium session, err was: Error: Requested a new session but one was in progress 之前的会话没有关闭,然后你又运行了测试实例,也没有设置覆盖. 解决: 1. 重新停止appium服务,开启Appium服务 2. 在Genarel Setting那里设置覆盖Session,重启Appium 测试结束...

无标是题文章
\/root\/1\/staging_dir\/toolchain-arm_arm1176jzf-s+vfp_gcc-5.4.0_musl-1.1.16_eabi\/bin\/arm-openwrt-linux-muslgnueabi-gcc: line 3: \/root\/1\/staging_dir\/toolchain-arm_arm1176jzf-s+vfp_gcc-5.4.0_musl-1.1.16_eabi\/bin\/..\/..\/host\/lib\/ld-linux-x86-64.so.2: cannot execute binary file:...

svchost.exe- 应用程序错误 "0x7b7a6273"指令引用的"0x7b7a6273"内存...
for %1 in (%windir%\\system32\\*.dll) do regsvr32.exe \/s %1 怕输入错误,可以复制这条指令,然后在命令提示符后击鼠标右键,打“粘贴”,回车,耐心等待,直到屏幕滚动停止为止。 (2)运行regedit进入注册表, 在HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\ShellExecuteHooks 下,应该只有...

十万火急请高手来 开机后就出现这个 "0x1000233c"指令引用的“0x1000...
1 、右击桌面上“我的电脑”→属性→高级→错误报告→错误汇报→勾选“禁用错误汇报”→“但在发生严重错误时通知我”复选框→确定。这样处理对于一些小错误,Windows XP就不会弹出错误提示了。2、如果不行彻底关闭错误报告服务。开始→运行中输入→services.msc→打开“服务”窗口→找到“Error Reporting Service”→...

相似回答
大家正在搜