Visual c ++ nie może otworzyć pliku „iostream”

Jestem nowy w c ++. Dopiero zacząłem! Próbowałem kodu w wersji Visual C ++ 2010 Express, ale otrzymałem następujący komunikat o błędzie kodu.

------ 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 ==========

To jest kod

// 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