返回列表 發帖

【競賽】題目一:顯示文字

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

題目一:顯示文字



題目要求:

  • 在畫面上第一行顯示「2013谷哥人夏令營」字樣。
  • 在畫面上第二行顯示學員名字「學生:陳小明」。

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



執行結果:(以老師為範例)
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

返回列表