-6
V A C++程序這是main.cpp
:錯誤而編制與G ++
#include <stdio.h>
using namespace std;
int main() {
cout << "Hello, World!" << endl;
return 0;
}
要編譯它,我進入CMD,然後鍵入g++ main.cpp
,但它給了我2個錯誤,他說,這兩個cout
和endl
不聲明。我只能想象它是因爲它找不到命名空間std
或不能包含<stdio.h>
。我將如何完成這項工作?
您應該使用的#include代替 –
user2807083
你忘了'#包括' –
NathanOliver
我犯了類似的錯誤,當我第一次開始學習C++ C. – Larry