在C++中在查找预编译头时遇到意外的文件结尾。是否忘记了向源中添加“#include "StdAfx.h"”?怎么办

2024-12-26 00:42:50
推荐回答(4个)
回答1:

在cpp第一行添加#include "StdAfx.h"如果说有cin cout endl这种是未声明的标识符的提示,则在头文件包含语句下添加using namespace std;

回答2:

#include"stdafx.h"using namespace std;

回答3:

在你所建立得项目文件中的源文件中添加#include“stdafx.h”语句 ,当然你的头文件中也必须得有此包含文件,试试,重新编译运行,我的就这样没问题了!

回答4:

你好像没有加<>