✔ 最佳答案
#include <iostream>
其實係FOR INCLUDE你要用既程式碼
基本上9成C++ PROGRAM都要用到#include <iostream>
其中包含2句常用statment
cout << = output
cin >> = input
你可以試下
//#include <iostream> without #include <iostream> will cause compile error
using namespace std;
int main(){
cout << "Hello";
return 0;
}
using namespace std;其實都係FOR cout,cin呢類
#include <iostream>
//using namespace std; without using namespace std will cause compile error
int main(){
cout << "Hello";
return 0;
}
因為一般用cout,cin正式寫法係std::cout.std::cin
而using namespace std就免卻左呢個麻煩
而 int main(){}
其實只係指程式入口點
因為好多時我地會有function係堆CODE入面
而PROGRAM唔會知應該由邊段CODE開始RUN起
所以需要定義程式入口點