返回列表 發帖

第一支程式

本帖最後由 tonyh 於 2015-3-13 20:39 編輯

在螢幕上顯示 "快樂C++" 字樣
  1. #include<iostream>  //引入標頭檔 <基本輸入輸出> in & out stream
  2. #include<cstdlib>   //引入標頭檔 <基本函式庫> c standard library
  3. using namespace std;  //使用命名空間 std
  4. int main() //主函式
  5. {
  6.     cout<<"快樂C++"<<endl;
  7.     system("pause");  //暫停
  8.     return 0;         //回傳0到主控台告訴電腦,程式已成功執行
  9. }
複製代碼

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"快樂C++"<<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<<"holly"<<endl;
  7.    
  8.    system("pause");
  9.    return 0;   
  10. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.      cout<<"即刻槍戰,我是槍神"<<endl;
  7.      system("pause");
  8.      return 0;
  9. }
複製代碼
我是眾神之王XXX  I love you
0000000000

TOP

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

TOP

返回列表