Board logo

標題: 【競賽】題目四:好多谷歌人 [打印本頁]

作者: 游東祥    時間: 2013-8-15 08:25     標題: 【競賽】題目四:好多谷歌人

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

題目四:好多谷歌人



題目要求:

P.S. 請注意,本題為第三題的進階版,請先完成第三題再來挑戰喔!



執行結果:
[attach]744[/attach]
作者: 張瀚仁    時間: 2013-8-15 10:26

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a;
  7.     cout<<"谷哥人數量:";
  8.     cin>>a;                     
  9.     for(int i=1;i<=a;i++)
  10.     {
  11.          cout<<"谷哥人"<<i<<"號"<<endl;        
  12.     }
  13.    
  14.    
  15.     system("pause");   
  16.     return 0;
  17. }
複製代碼

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

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

  4. int main()                 //程式從 "main" 開始執行
  5. {
  6.    int x;
  7.    cout << "谷哥人數量:";
  8.    cin >> x;
  9.    for (int y=1; y < (x+1); y++)
  10.    {
  11.    cout << "谷哥人" << y << "號" <<endl;
  12.    }
  13.    
  14.     system("pause");       //讓程式暫停
  15.     return 0;              //程式執行正確
  16. }
複製代碼

作者: 陳國蘢    時間: 2013-8-15 11:17

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

  4. int main()
  5. {
  6.    
  7.     for (int i = 1; i < 100; i++)
  8.     {
  9.         cout << "谷哥人" << i << "號" << endl;
  10.     }
  11.    
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

作者: 施伯叡    時間: 2013-8-15 11:20

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

  4. int main ()
  5. {
  6.     int a;
  7.     cout << "谷歌人數量:";
  8.     cin >> a;
  9.     for (int i = 1; i<=a ; i++)
  10.     {
  11.         cout << "谷歌人"<< i << "號" <<endl;
  12.     }   
  13.      
  14.     system ("pause");
  15.     return 0;   
  16. }
複製代碼

作者: 陳寧莉    時間: 2013-8-15 11:22

  1. #include <iostream>         //引入輸出.入的指令
  2. #include <cstdlib>          //引入c的標準函式
  3. using namespace std;        //使用標準函式庫命名
  4. int main()                  //程式從"main"執行
  5. {
  6.     int x;
  7.    cout<<"谷哥人數量";
  8.     cin>>x;
  9.    
  10.    
  11.    
  12.    
  13.     for(int i=1;i<=x;i++)
  14.     cout <<"谷哥人"<<i<<"號"<< endl;


  15.     system("pause");        //讓程式暫停
  16.     return 0;               //告訴程式執行正確
  17. }
複製代碼

作者: 徐義翔    時間: 2013-8-15 11:25

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

  4. int main()
  5. {
  6.     cout <<"谷哥人數量:" <<endl;
  7.     for(int i=1; i>0; i++)
  8.     cout <<"谷哥人"<< i << "號" <<endl;
  9.     system("pause");               
  10.     return 0;
  11. }           
複製代碼

作者: 張彥承    時間: 2013-8-15 11:29

  1. #include<iostream>         
  2. #include<cstdlib>           
  3. using namespace std;      
  4. int main()                 
  5. {
  6.     int d;
  7. cout<<"谷哥人數量:";
  8. cin>>d;
  9.    for(int i=0; i<=10; i++)
  10.    {
  11.      cout<<"第"<<i<<"名"<<endl;
  12.             }
  13.     system("pause");
  14.     return 0;      
  15. }
複製代碼

作者: 李恆    時間: 2013-8-15 11:32

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

  4. int main()

  5. {
  6.    
  7.     {
  8.      int a;  

  9.    

  10.        cout << "請輸入谷歌人數量:";
  11.         



  12.     cin >> a;



  13.    



  14.    
  15.     }

  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

作者: 柯璟廷    時間: 2013-8-15 11:32

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

  4. int main()
  5. {
  6.    
  7.     for (int i=1; i<10; i++)
  8.     {
  9.      cout <<"谷哥人"<< i <<"號"<< endl;   
  10.     }
  11.    
  12.    
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

作者: 蔡凱益    時間: 2013-8-15 11:33

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

  4. int main()
  5. {

  6.     for (int i = ; i < ; i++)
  7.     {
  8.     cout << "谷哥人數量"  << endl;
  9.     }
  10.     {
  11.     cout << "谷哥人" << i << "號" << endl;
  12.     }
  13.       
  14.      system("pause");
  15.      return 0;
  16. }
複製代碼

作者: 張峻瑋    時間: 2013-8-15 11:33

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

  4. int main()
  5. {
  6.     cout<<"谷哥人數量 j:"<<endl ;
  7.     cin>>j;
  8.     for(int i=1;i<j;i++)
  9.     {
  10.         cout<<"谷哥人"<<i<<"號"<<endl;  
  11.     }        
  12.    
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

作者: 徐義翔    時間: 2013-8-15 11:36

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

  4. int main()
  5. {
  6.     cout << "谷哥人數量:" <<endl;
  7.     for(int i=1; i>0; i++)
  8.     cout <<"谷哥人"<< i << "號" <<endl;
  9.     system("pause");               
  10.     return 0;
  11. }           
複製代碼

作者: 張郁庭    時間: 2013-8-15 11:38

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. for (int i = 1; i < 10; i++)
  7.    {
  8.     cout << "谷哥人" << i << "號" << endl;
  9.    }
  10. system("pause");
  11. return 0;
  12. }   
複製代碼

作者: 吳宗桓    時間: 2013-8-15 11:41

  1. #include <iostream>                     //引入輸出輸入指令
  2. #include <cstdlib>                     //引入c的語言 的標準函式
  3. using namespace std;                  //用標準函式庫命名空間
  4. int main()
  5.   {
  6.   
  7.   cout<<"谷哥人數量:"<<endl;
  8.   for (int i = 1; i < 500; i++)

  9.     {

  10.         cout << "谷哥人" << i << "號" << endl;

  11.     }

  12.    


  13.   

  14.    

  15.     system("pause");

  16.     return 0;
  17. }
複製代碼

作者: 徐義翔    時間: 2013-8-15 11:42

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

  4. int main()
  5. {
  6.     cout << "谷哥人數量:" <<endl;
  7.     for(int i=1; i>0; i++)
  8.     cout <<"谷哥人"<< i << "號" <<endl;
  9.     system("pause");               
  10.     return 0;
  11. }           
複製代碼

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

  1. #include<iostream>         
  2. #include<cstdlib>           
  3. using namespace std;      
  4. int main()                 
  5. {
  6.     int x;
  7.    cout<<"谷哥人數量:";
  8.    cin>> x;
  9.    
  10.    for(int i=0; i<=x; i++)
  11.    {
  12.      cout<<"谷"<<i<<"哥人"<<endl;
  13.             }
  14.     system("pause");
  15.     return 0;      
  16. }
複製代碼





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