我是初学者,由于某种原因这不起作用我使用的是visual studio

时间:2017-01-08 01:46:44

标签: c++

所以我是初学者,由于某种原因,这仍然给我未申报的标识符错误,系统找不到指定的文件错误我会很感激有人会回答我这个

#include <iostream>
#include "stdafx.h"
using namespace std;

int main()
{   
    cout << "hello world" << endl;
    return 0;
}

1 个答案:

答案 0 :(得分:3)

使用visual studio时,当使用预编译的标题时,此行#include "stdafx.h"需要位于代码的顶部。

#include "stdafx.h"
#include <iostream>
using namespace std;

int main()
{
    cout << "hello world" << endl;
    return 0;
}