本帖最後由 劉漢文 於 2012-6-16 17:01 編輯
- #include<iostream>
- using namespace std;
- int count(int ,int);
- int main()
- {
- int x, y;
- cout<<"請輸入連續數的第一個數: "<<endl;
- cin>>x;
- cout<<"請輸入續數的第二個數: "<<endl;
- 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++;
- }
- }
複製代碼 |