返回列表 發帖
  1. #include <iostream>     //引入輸出輸入
  2. #include <cstdlib>      //引入C的標準函式
  3. using namespace std;    //使用標準函式命名空間

  4. int main()              //開始執行
  5. {
  6.     cout<<"hello"<<endl;
  7.     system("pause");    //讓程式暫停
  8.     return 0;           //程式執行正確
  9. }
複製代碼

TOP

回復 20# 薛景謙
  1. #include <iostream>          // 引入輸出輸入
  2. #include <cstdlib>           //C的標準函式
  3. using namespace std;         // 使用標準函式庫命名空間
  4. int main()                   //要執行的程式碼
  5. {
  6.         cout<<"hello"<<endl; //顯示hellow
  7.         system("pause");     //暫停
  8.         return 0;            //告訴電腦程式完成
  9. }
複製代碼

TOP

  1. #include <iostream>    //引入輸出輸入的指令
  2. #include <cstdlib>     //引入c的標準函式
  3. using namespace std;   //引入c的標準函式庫命名空間
  4. int main()             //程式從開始執行

  5. {
  6.     cout<<"hello"<<endl;
  7.     system("pause");    //讓程式暫停
  8.     return 0;        //回報程式運作正確
  9. }
複製代碼

TOP

返回列表