Board logo

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

作者: 陳品肇    時間: 2018-8-1 12:38     標題: 我的第一支程式

在螢幕上顯示 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. }
複製代碼

作者: 黃資尹    時間: 2018-8-1 13:53

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"我是黃資尹!!我來自龍華國中"<<endl;
  7.     system("pause");
  8.     return 0;
  9. }
複製代碼

作者: 陳潔歆    時間: 2018-8-1 13:54

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"我叫陳潔歆,我來自勝利國小"<<endl;
  7.     system("pause");
  8.     return 0;
  9. }
  10.    
  11.    
  12.    
複製代碼

作者: 湯郡一    時間: 2018-8-1 13:55

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"我是湯郡一!我來自左營國小"<<endl;
  7.     system("pause");
  8.      return 0;   

  9. }
複製代碼

作者: 蔡睿紘    時間: 2018-8-1 13:57

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

作者: 曾彥鈞    時間: 2018-8-1 13:57

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    
  7.     cout<<"我是曾彥鈞 我來自鳳國小";
  8.     system("pause");
  9.     return 0;
  10. }
複製代碼

作者: 邱泰澄    時間: 2018-8-1 13:58

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;   
  4. int main()
  5. {
  6.     cout<<"我是邱泰澄!!!就讀龍華國中202班"<<endl;
  7.     system("pause");        
  8.     return 0;      
  9. }
複製代碼

作者: 曾宥承    時間: 2018-8-1 14:00

  1. #include<iostream>   
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.           cout<<"我是曾宥承我來自中信國小"<<endl;
  7.           system("pause");
  8.           return 0;
  9. }
複製代碼

作者: 傅臣嘉    時間: 2018-8-1 14:00

本帖最後由 陳品肇 於 2018-8-1 14:01 編輯
  1. #include <iostream>    //引入標頭檔 <in & out stream>,基本輸入輸出
  2. #include <cstdlib>    //引入標頭檔 <c standard library>,標準函式庫
  3. using namespace std;  //指定命名空間
  4. int main()            //主函式
  5. {
  6.     cout<<"我是傅臣嘉!來自文府國中"<<endl;
  7.     system("pause");    //畫面暫停
  8.     return 0;   //回傳0至主控台,告知已成功執行並結束
  9. }
複製代碼

作者: 田宇任    時間: 2018-8-1 14:04

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     cout<<"我是田宇任,來自國昌國中"<<endl;
  7.     system("pause");
  8.     return 0 ;
  9. }
複製代碼





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