返回列表 發帖
  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>//引入標頭檔<iostream>  in&out串流
  2. #include<cstdlib>//引入標頭檔<基本函數庫> c standard library
  3. using namespace std; //使用命名空間std
  4. int main()    //主函式開始
  5. {             //主函式的內容
  6.     cout<<"hello"<<endl; //輸出hello ,endl代表換行
  7.     system("pause");   //暫停
  8.     return 0;          //回傳0到主控台告訴電腦本程式已成功執行
  9. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     //基本輸入輸出
  7.     int   a;   
  8.     cin >>a;   
  9.     cout<< "您輸入的數字是"<<a<<endl;
  10.   
  11.     system("pause");
  12.     return 0;
  13. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"2015谷哥人冬令營"<<endl;
  7.     cout<<"學生:黃璽安"<<endl;
  8.     system("pause");
  9.     return 0;
  10. }
複製代碼

TOP

返回列表