本帖最後由 tonyh 於 2014-3-8 15:04 編輯
利用自訂函數法, 設計一個程式, 讓使用者輸入前後兩數, 電腦就可列出前數到後數的連續數字.
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int print(int, int);
- int main()
- {
- int x, y;
- cout<<"請輸入連續數列的第一個數: ";
- cin>>x;
- cout<<"請輸入連續數列的最後一個數: ";
- cin>>y;
- print(x, y);
- system("pause");
- return 0;
- }
- int print(int x, int y)
- {
- if(x<=y)
- {
- for(int i=x; i<=y; i++)
- {
- cout<<i<<endl;
- }
- }else
- {
- for(int i=x; i>=y; i--)
- {
- cout<<i<<endl;
- }
- }
- }
複製代碼 |