返回列表 發帖

倍數運算

1. 讓使用者輸入要顯示的倍數2. 讓使用者輸入顯示幾個倍數
3. 顯示倍數列表

本帖最後由 周雍程 於 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

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int b;
  7.     cout<<"輸入倍數基底:";
  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.    
  20.     int c;
  21.     cout<<"輸入顯示個數:";
  22.     cin>> c;
  23.    
  24.     for(int i=1;i<=c;i++)
  25.     {     
  26.           cout<< b*i <<endl;      
  27.     }
  28.     system("pause");
  29.     return 0;
  30. }
複製代碼

TOP

  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.    if ( b > 50)
  10.    {
  11.       b = 50;     
  12.    }
  13.    
  14.    else if ( b < 2)
  15.    {
  16.       b = 2;     
  17.    }
  18.    
  19.    
  20.    int c;
  21.    cout << "請輸入顯示數量(1~15):" ;
  22.    cin >> c;
  23.    
  24.    if ( c > 15)
  25.    {
  26.       c = 15;     
  27.    }
  28.    
  29.    else if ( c < 1)
  30.    {
  31.       b = 1;     
  32.    }
  33.    
  34.    for (int i = 1 ; i<= c ;i++)
  35.    {
  36.        cout << b * i << endl;   
  37.    }
  38.    system ("pause");
  39.    return 0;
  40. }
複製代碼

TOP

本帖最後由 李彥彤 於 2013-9-7 17:59 編輯
  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.    if ( b > 50)
  10.    {
  11.       b = 50;     
  12.    }
  13.    
  14.    else if ( b < 2)
  15.    {
  16.       b = 2;     
  17.    }
  18.    
  19.    
  20.    int c;
  21.    cout << "請輸入顯示個數(1~15):" ;
  22.    cin >> c;
  23.    
  24.    if ( c > 15)
  25.    {
  26.       c = 15;     
  27.    }
  28.    
  29.    else if ( c < 1)
  30.    {
  31.       b = 1;     
  32.    }
  33.    
  34.    for (int i = 1 ; i<= c ;i++)
  35.    {
  36.        cout << b * i << endl;   
  37.    }
  38.    system ("pause");
  39.    return 0;
  40. }
複製代碼

TOP

  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

  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

  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.     else if (b < 2)
  15.     {
  16.         b=2;
  17.     }
  18.    
  19.    
  20.     int c;
  21.     cout<<"輸入顯示個數(1-15):";
  22.     cin>> c;
  23.    
  24.     if (c < 1)
  25.     {
  26.         c=1;      
  27.     }
  28.     else if (c > 15)
  29.     {
  30.         c=15;
  31.     }
  32.      
  33.     for(int i=1;i<=c;i++)
  34.     {     
  35.           cout<< b*i <<endl;      
  36.     }
  37.     system("pause");
  38.     return 0;
  39. }
複製代碼

TOP

返回列表