为什么一个简单的“Hello World”风格的程序不能用Turbo C ++编译?
我已经开始为我的编程课学习C ++了。我已经下载了这个“Hello World”程序:
#include <iostream>
using namespace std;
int main()
{
cout << "Hello, World!";
return 0;
}
但是Turbo C ++抱怨道:
Error D:\HELLO.CPP 1: Unable to open include file 'IOSTREAM'
Error D:\HELLO.CPP 2: Declaration syntax error
Error D:\HELLO.CPP 6: Undefined symbol 'cout'
这个非常简单的程序出了什么问题?我该如何纠正这些错误?
拉风的咖菲猫
相关分类