返回列表 發帖
  1. #include <iostream>             //引入輸出入指令
  2. #include <cstdlib>              //引入c語言標準函數
  3. using namespace std;            //使用標準函式庫命名空間

  4. int main()                      //程式從"main'開始執行

  5. {
  6.     cout<<"hello 安安 ㄤㄤ hi 嗨 "<<endl;
  7.     system("pause");            //讓程式暫停   
  8.     return 0;                   //告訴程式執行正確
  9. }
  10.                                                 
複製代碼

TOP

  1. #include<iostream>          //引認輸出輸入的指令
  2. #include<cstdlib>           //引入c的標準函式
  3. using namespace std;        //使用標準函式庫命名空間
  4. int main()                  //程式從" main "開始
  5. {
  6.     cout<<"hello"<<endl;
  7.     system("pause");        //程式暫停
  8.     return 0;               //回報程式運作正常
  9. }
複製代碼

TOP

  1. #include <iostream>             //引入輸出入指令
  2. #include <cstdlib>              //引入c語言標準函數
  3. using namespace std;            //使用標準函式庫命名空間

  4. int main()                      //程式從"main'開始執行

  5. {
  6.     cout<<"hello 安安 ㄤㄤ hi 嗨 "<<endl;
  7.     system("pause");            //讓程式暫停   
  8.     return 0;                   //告訴程式執行正確
  9. }
  10.                                                 
複製代碼

TOP

返回列表