你是用的预编译的编译方式,而你没有添加#include "stdafx.h"
所以“找预编译头时遇到意外的文件结尾”
另外#include
新建一个项目,对空项目打勾然后添加文件之后代码改成:#include
struct Point{ int x ; int y ;
};
void main() { Point pt; pt.x =5; cout << pt.x << endl;}
试试~~~
#include
using namespace std;
struct Point{ int x ; int y ;
};
void main() { Point pt; pt.x =5; cout << pt.x << endl;} 用标准的试试看
将#include
#include
using namespace std;//使用名称空间std(std名称空间包含许多类和对象,如cout,cin等)
新标准的C++头文件将没有扩展名.h;
using namespace std;是不是这句忘加了。