返回列表 發帖
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;

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

TOP

返回列表