프로그래밍 수업을 위해 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 …