返回列表 發帖

我的第一支程式

本帖最後由 歐柏罕 於 2017-10-28 16:39 編輯
  1. #include<iostream>  //輸入輸出
  2. #include<cstdlib>   //函式庫
  3. using namespace std;  //命名
  4. int main()
  5. {
  6.     cout << "大家好" << endl;
  7.     //cout 輸出 <<
  8.     //cin  輸入 >>
  9.     //字串要用雙引號包起來(")
  10.     // endl換行
  11.     // ;代表結束
  12.     system("pause"); //暫停                  
  13.     return 0;        //結束了
  14. }
複製代碼

返回列表