返回列表 發帖
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.    cout << "hello los angles clippers" << endl;
  7.    system("pause");
  8.   return 0;
  9. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"hello"<<endl;
  7.     system("pause");
  8.     return 0;
  9.     }
複製代碼

TOP

  1. #include <iostream>        //      引入輸出輸入的指令
  2. #include <cstdlib>         //      引入c'S STANDARD  函式
  3. using namespace std;       //   使用標準函式庫命名
  4. int main ()                //  程式從"MAIN"開始進行
  5. {
  6.     cout<<"I never feel nervous trying,I only fear nervous dying<<"<<endl;
  7.     system("pause");//使程式暫停
  8.     return 0;             //   回報程式運作正確
  9. }
複製代碼

TOP

#include <iostream>

#include <cstdlib>

using namespace std;



int main()

{

    cout << "hello" << endl;

    system("pause");

    return 0;

}

TOP

  1. #include<iostream>     //前置處理指令
  2. #include<cstdlib>      //引入c的標準程式
  3. using  namespace  std;   //名稱空間      

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

TOP

返回列表