C++头文件iostream 无法包含 的 问题 ,请各位指教!

2024-12-26 16:07:00
推荐回答(5个)
回答1:

你是用的预编译的编译方式,而你没有添加#include "stdafx.h"
所以“找预编译头时遇到意外的文件结尾”
另外#include 和#include 是不一样的,前者不需要加using namespace std;,而后者需要加;

回答2:

新建一个项目,对空项目打勾然后添加文件之后代码改成:#include using namespace std;
struct Point{ int x ; int y ;
};
void main() { Point pt; pt.x =5; cout << pt.x << endl;}
试试~~~

回答3:

#include
using namespace std;
struct Point{ int x ; int y ;
};
void main() { Point pt; pt.x =5; cout << pt.x << endl;} 用标准的试试看

回答4:

将#include 换成
#include
using namespace std;//使用名称空间std(std名称空间包含许多类和对象,如cout,cin等)
新标准的C++头文件将没有扩展名.h;

回答5:

using namespace std;是不是这句忘加了。