Visual Studio 2015" Hello World"多个错误

时间:2016-02-06 16:19:26

标签: c++ visual-c++ visual-studio-2015

我使用的是visual studio 2015 update 1,在我非常简单的控制台应用程序中出现了448个错误。我该如何解决这些错误。我以前没有这个问题(Visual Studio 2013工作正常。)

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

using namespace std;  

int main()  
{
    cout << "Hello World";  
    return 0;  
}

enter image description here enter image description here

1 个答案:

答案 0 :(得分:1)

重新安装visual studio update 1解决了我的问题 I thank this user: ulrich-eckhardt

enter image description here