Board logo

標題: 我的第一支程式 [打印本頁]

作者: tonyh    時間: 2016-1-21 10:05     標題: 我的第一支程式

本帖最後由 tonyh 於 2016-1-21 11:43 編輯

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

作者: 任立宇    時間: 2016-1-21 11:24

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

作者: 洪億承    時間: 2016-1-21 11:29

  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. }
複製代碼

作者: 李啟綸    時間: 2016-1-21 11:37

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"the best way to improve our language skill is playing League of Legends!"<<endl;
  7.     system("pause");
  8.     return 0;
  9. }
複製代碼

作者: 潘彥勳    時間: 2016-1-21 11:38

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

作者: 黃茂勛    時間: 2016-1-21 11:39

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

作者: 巫沛庭    時間: 2016-1-21 11:39

  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. }
複製代碼

作者: 陸長辰    時間: 2016-1-21 11:39

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

作者: 龔承緯    時間: 2016-1-21 11:43

  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. }      
複製代碼

作者: 巫晉宇    時間: 2016-1-21 11:50

  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. }
複製代碼

作者: 龔承緯    時間: 2016-1-22 10:42

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a;
  7.     cout<<"輸入整數:";
  8.     cin>>a;
  9.     cout<<"你剛輸入數字:" <<a<<endl;
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2