Visual c ++ não pode abrir o arquivo de inclusão 'iostream'

Eu sou novo em c ++. Eu apenas comecei! Eu tentei um código no visual c + + 2010 versão Express, mas eu tenho a seguinte mensagem de erro de código.

------ Build started: Project: abc, Configuration: Debug Win32 ------
  ugo.cpp
c:\users\castle\documents\visual studio 2010\projects\abc\abc\ugo.cpp(3): fatal error C1083: Cannot open include file: 'iostream': No such file or directory
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

Este é o código

// first.cpp -- displays a message


#include <iostream>   // a PREPROCESSOR directive

int main(void)        // function header
{             // start of a function body
  using namespace std;
  cout << "Come up and C++ me sometime.\n";  // message
  // start a new line
  cout << "Here is the total: 1000.00\n";
  cout << "Here we go!\n";
  return 0;
}

questionAnswers(8)

yourAnswerToTheQuestion