請對C++有一定認識的朋友進來救救小弟

2015-01-31 2:30 am
求救,本人今年大一,在美國一心想讀電腦,所以就報左C++,不過完全聽唔明,根本唔知個老師up乜,淨系識跟住老師打include iostream, using namespace std, int main....................其實e d究竟系乜黎架?點先可以學好呀?仲有記咩先系最重要呀????

回答 (3)

2015-02-11 10:51 pm
✔ 最佳答案
#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起
所以需要定義程式入口點
2015-02-01 6:54 am
其實C++在 computer language 入面,算係比較難一種
我認為你要查多D資料會比較易學

http://openhome.cc/Gossip/CppGossip/
呢個網站D資料都唔錯

除左睇多D教學之外,亦都要做Labexercise
參考: 自己
2015-01-31 3:23 am
讀大學就係咁,冇人教到你,你要自學,自行上網,去圖書館搵書,試下搵呢本c++ for dummies, 簡單易明,不過你唔好話唔識英文。


收錄日期: 2021-04-15 18:17:09
原文連結 [永久失效]:
https://hk.answers.yahoo.com/question/index?qid=20150130000051KK00072

檢視 Wayback Machine 備份