返回列表 發帖
  1. #include<iostream>  //匯入input & output基本輸入輸出函式庫
  2. #include<cstdlib>   //引入C Standard Library標準函式庫
  3. using namespace std; //指定命名空間為std
  4. int main()
  5. {
  6.     cout<<"Hello world"<<endl;
  7.     system("pause"); //讓黑色畫面暫停
  8.     return 0;    //告知主程式完成
  9. }
複製代碼
May

TOP

返回列表