本帖最後由 tonyh 於 2012-6-16 17:08 編輯
利用自訂函數法, 設計一個程式, 讓使用者輸入前後兩數, 電腦就可列出前數到後數的連續數字.- using namespace std;
- int count(int, int);
- int main()
- {
- int x, y;
- cout<<"請輸入連續數列的第一個數: ";
- cin>>x;
- cout<<"請輸入連續數列的最後一個數: ";
- cin>>y;
- if(x>y)
- {
- cout<<"最後一個數必須大於或等於第一個數!"<<endl;
- return main();
- }
- count(x,y);
- system("pause");
- return 0;
- }
- int count(int x, int y)
- {
- while(x<=y)
- {
- cout<<x<<endl;
- x++;
- }
- }
複製代碼- #include<iostream>
- using namespace std;
- int count(int, int);
- int main()
- {
- int x, y;
- count(x,y);
- system("pause");
- return 0;
- }
- int count(int x, int y)
- {
- cout<<"請輸入連續數列的第一個數: ";
- cin>>x;
- cout<<"請輸入連續數列的最後一個數: ";
- cin>>y;
- if(x>y)
- {
- cout<<"最後一個數必須大於或等於第一個數!"<<endl;
- return main();
- }
- for(int i=x; i<=y; i++)
- {
- cout<<i<<endl;
- }
- }
複製代碼 |