返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. int b;
  7. cout<<"請輸入倍數基底(1~50):";
  8. cin>>b;
  9. int c;
  10. cout<<"請輸入顯示個數(1~15):";
  11. cin>>c;
  12.   if(b>50)
  13.   {
  14.    b=50;

  15. }
  16. if(b<2)
  17. {
  18.       
  19.        b=2;
  20.       
  21.        }
  22.        if(c>15)
  23.        {
  24.       
  25.       
  26.        b=15;
  27.        }
  28.       
  29.       
  30.        if(c<2)
  31.        {
  32.       
  33.        c=2;
  34.        }
  35.       
  36.        else if(c>15)
  37.        {
  38.        c=15;
  39.       
  40.        }
  41. for (int i=1;i<c;i++)
  42. {
  43.    cout<<b*i<<endl;
  44.    
  45. }
  46.     system("pause");
  47.     return 0;
  48. }
複製代碼

TOP

返回列表