返回列表 發帖

【競賽】題目四:好多谷歌人

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

題目四:好多谷歌人



題目要求:

  • 在畫面第一行顯示「谷哥人數量:」,並停留在第一行等待使用者輸入。
  • 從畫面第二行開始顯示「谷哥人1號」、「谷哥人2號」、「谷哥人3號」..... 直到第一步驟輸入的數量(如果第一步驟輸入99,則顯示到「谷哥人99號」)。
  • 每一個谷哥人都必需換行處理。
  • 本題請使用 for 迴圈作答,且 cout 最多只能出現 3 次。

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



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

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

返回列表