为什么包含 iostream 会出错

Why does including iostream give errors

我正在使用 Visual Studio 2015 在 C++ 中编写一个简单的程序,当我 #include <iostream> 时,我遇到了一堆错误,如下图所示: 我的代码可以在下方和图片中找到。

// FirstProject.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <iostream>

int main()
{
    std::cout << "Hello World!";

    int pause;
    pause = 0;
    std::cin >> pause;

    return 0;
}

Code and Errors

错误来自 Visual Studio 2015 无法正确定位包含文件。