Board logo

標題: 【競賽】題目一:顯示文字 [打印本頁]

作者: 游東祥    時間: 2013-8-15 00:20     標題: 【競賽】題目一:顯示文字

本帖最後由 游東祥 於 2013-8-15 12:04 編輯

題目一:顯示文字



題目要求:

P.S. 請注意「陳小明」請改為自己的本名才算答對噢!



執行結果:(以老師為範例)
[attach]742[/attach]
作者: 施伯叡    時間: 2013-8-15 10:14

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;

  4. int main ()
  5. {
  6.     cout <<"2013谷哥人夏令營"<<endl;
  7.     cout <<"學生:施伯叡"<<endl;
  8.     system ("pause");
  9.     return 0;   
  10. }
複製代碼

作者: 張瀚仁    時間: 2013-8-15 10:14

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

作者: 徐義翔    時間: 2013-8-15 10:14

  1. #include <iostream>              
  2. #include <cstdlib>              
  3. using namespace std;            

  4. int main()                       

  5. {
  6.     cout<<"2013谷哥人夏令營"<<endl;
  7.     cout<<"學生:徐義翔"<<endl;
  8.     system("pause");              
  9.     return 0;                    
  10. }
複製代碼

作者: 陳寧莉    時間: 2013-8-15 10:14

  1. #include <iostream>         
  2. #include <cstdlib>           
  3. using namespace std;         
  4. int main()                  
  5. {
  6.     cout <<"2013谷哥人夏令營"<<endl;
  7.     cout <<"學生:陳寧莉"<<endl;


  8.     system("pause");        
  9.     return 0;               
複製代碼

作者: 柯璟廷    時間: 2013-8-15 10:16

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6. cout<<"2013谷哥人夏令營"<<endl;   
  7. cout<<"學生:柯璟廷"<<endl;
  8.   system("pause");
  9.   return 0;   
  10. }
複製代碼

作者: 蔡秉修    時間: 2013-8-15 10:16

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;

  4. int main()

  5. {
  6.       cout<<"2013谷哥人夏令營"<<endl;
  7.       cout<<"學生:蔡秉修"<<endl;
  8.       
  9.       system("pause");
  10.       reurn 0;
  11. }      
複製代碼

作者: 李恆    時間: 2013-8-15 10:17

  1. #include <iostream>        
  2. #include <cstdlib>         
  3. using namespace std;        

  4. int main()                  

  5. {
  6.      cout << "2013谷哥人夏令營" << endl;
  7.      cout << "學生:李恆" << endl;
  8.   
  9.            
  10.     system("pause");      
  11.     return 0;              
  12. }
複製代碼

作者: 蔡凱益    時間: 2013-8-15 10:19

  1. #include <iostream>         
  2. #include <cstdlib>         
  3. using namespace std;        
  4. int main()                  
  5. {

  6. cout << "2013谷哥人夏令營"<<endl;
  7. cout <<"學生:蔡凱益"<<endl;
  8. system("pause");        
  9. return 0;               
  10. }
複製代碼

作者: 吳宗桓    時間: 2013-8-15 10:19

  1. #include <iostream>                     //引入輸出輸入指令
  2. #include <cstdlib>                     //引入c的語言 的標準函式
  3. using namespace std;                  //用標準函式庫命名空間
  4. int main()
  5.   {
  6.   
  7.    
  8.    cout<<"2013谷哥人夏令營"<<endl;
  9.    cout<<"學生:吳宗桓"<<endl;
  10.    
  11.      
  12.   system("pause");
  13.   return 0;  
  14.   }  
複製代碼

作者: 張彥承    時間: 2013-8-15 10:20

  1. #include <iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. cout<< "2013谷哥人夏令營" <<endl;
  7.   
  8.   cout<<"學生:張彥承"<< endl;
  9.    
  10.    

  11. system("pause");
  12. return 0;
  13. }
複製代碼

作者: 張郁偵    時間: 2013-8-15 10:22

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {

  6. cout<<"2013谷歌人夏令營"<<endl;
  7. cout<<"學生:張郁偵"<<endl;
  8. system("pause");
  9. return 0;
  10. }
複製代碼

作者: 薛景謙    時間: 2013-8-15 10:25

  1. #include <iostream>        //引入輸出輸入的指令
  2. #include <cstdlib>         //引入C的標準函式
  3. using namespace std;       //使用標準函式庫命名空間

  4. int main()                 //程式從 "main" 開始執行
  5. {
  6.    cout << "2013谷哥人夏令營" <<endl;
  7.    cout << "學生:薛景謙" <<endl;
  8.    
  9.     system("pause");       //讓程式暫停
  10.     return 0;              //程式執行正確
  11. }
複製代碼

作者: 張峻瑋    時間: 2013-8-15 10:26

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.     cout<<"2013谷哥人夏令營"<<endl;
  7.     cout<<"學生:張峻瑋"<<endl;
  8.     system("pause");
  9.     return 0;
  10. }
複製代碼

作者: 張郁庭    時間: 2013-8-15 10:28

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

作者: 陳國蘢    時間: 2013-8-15 10:43

  1. #include <iostream>      
  2. #include <cstdlib>         
  3. using namespace std;        

  4. int main()                  
  5. {
  6.   
  7.   cout<<"2013谷哥人夏令營"<<endl;
  8.    
  9.   cout<<"學生:陳國蘢"<<endl;
  10.       
  11.     system("pause");        
  12.     return 0;               
  13. }
複製代碼

作者: 周雍程    時間: 2013-8-15 10:51

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;

  4. int main()

  5. {
  6.    
  7.     cout<< "2013谷哥人夏令營"  <<endl;
  8.     cout<< "學生:周雍程"  <<endl;
  9.     system("pause");
  10.     return 0;
  11.         
  12. }
複製代碼

作者: 蘇昱安    時間: 2013-8-15 11:00

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





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