- #include <iostream>
- #include <cstdlib>
- using namespace std;
- int main ()
- {
- int b;
- cout << "請輸入倍數基底(2~50):" ;
- cin >> b;
- if ( b > 50)
- {
- b = 50;
- }
-
- else if ( b < 2)
- {
- b = 2;
- }
-
-
- int c;
- cout << "請輸入顯示數量(1~15):" ;
- cin >> c;
-
- if ( c > 15)
- {
- c = 15;
- }
-
- else if ( c < 1)
- {
- b = 1;
- }
-
- for (int i = 1 ; i<= c ;i++)
- {
- cout << b * i << endl;
- }
- system ("pause");
- return 0;
- }
複製代碼 |