我是 C++ 新手。我刚开始!我在 Visual c++ 2010 Express 版本上尝试了一个代码,但我收到了以下代码错误消息。
------ 构建开始:项目:abc,配置:调试 Win32 ------ ugo.cpp c:\users\castle\documents\visual studio 2010\projects\abc\abc\ugo.cpp(3):致命错误 C1083:无法打开包含文件:'iostream':没有这样的文件或目录 ========== 构建:0 成功,1 失败,0 最新,0 跳过 ==========
这是代码
// 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;
}