编译#include"stdafx.h" int main() { cout<<"Hello world!"<<endl; return 0; }

出现这样的错误--------------------Configuration: me - Win32 Debug--------------------
Compiling...
m.cpp
c:\program files\microsoft visual studio\myprojects\me\m.cpp(1) : fatal error C1083: Cannot open include file: 'stdafx.h': No such file or directory
Error executing cl.exe.

m.obj - 1 error(s), 0 warning(s)
具体的意思我知道,但不知道怎么处理

编译器找不到stdafx.h这个文件,你看下你的工程目录下面有没有这个文件嘛。不然就把#include"stdafx.h" 改成 #include <iostream> 就行了再加一行
using namespace std;
就OK了吧
温馨提示:内容为网友见解,仅供参考
第1个回答  2011-02-17
如果你头文件名没输错的话就是软件问题了,你去网上再下个安装好就能用了.
相似回答