  
|
我的第一支程式
本帖最後由 歐柏罕 於 2017-10-28 16:39 編輯
- #include<iostream> //輸入輸出
- #include<cstdlib> //函式庫
- using namespace std; //命名
- int main()
- {
- cout << "大家好" << endl;
- //cout 輸出 <<
- //cin 輸入 >>
- //字串要用雙引號包起來(")
- // endl換行
- // ;代表結束
- system("pause"); //暫停
- return 0; //結束了
- }
複製代碼 |
|