所以我是初学者,由于某种原因,这仍然给我未申报的标识符错误,系统找不到指定的文件错误我会很感激有人会回答我这个
#include <iostream>
#include "stdafx.h"
using namespace std;
int main()
{
cout << "hello world" << endl;
return 0;
}
答案 0 :(得分:3)
使用visual studio
时,当使用预编译的标题时,此行#include "stdafx.h"
需要位于代码的顶部。
#include "stdafx.h"
#include <iostream>
using namespace std;
int main()
{
cout << "hello world" << endl;
return 0;
}