返回列表 發帖
本帖最後由 周雍程 於 2013-9-7 17:55 編輯
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;

  4. int main()
  5. {   
  6.     int b;
  7.     cout << "請輸入倍數基底(2~15):";
  8.     cin >> b ;  
  9.    
  10.     if (b > 50)
  11.     {
  12.       b = 50;
  13.     }  
  14.     else if (b < 2)
  15.     {
  16.       b = 2;   
  17.     }
  18.    
  19.     int c;
  20.     cout << "請輸入顯示個數(1~15):";
  21.     cin >> c ;
  22.    
  23.     if (b > 15)
  24.     {
  25.       c = 15;
  26.     }  
  27.     else if (b < 1)
  28.     {
  29.       c = 1;   
  30.     }      
  31.       
  32.     for (int i=1 ; i <= c ;i++)
  33.     {
  34.         cout << b*i <<endl;
  35.     }
  36.     system("pause");
  37.     return 0;
  38. }
複製代碼

TOP

返回列表