返回列表 發帖
本帖最後由 劉漢文 於 2012-6-16 17:01 編輯
  1. #include<iostream>
  2. using namespace std;
  3. int count(int ,int);
  4. int main()
  5. {
  6.     int x, y;
  7.     cout<<"請輸入連續數的第一個數: "<<endl;   
  8.     cin>>x;
  9.     cout<<"請輸入續數的第二個數: "<<endl;   
  10.     cin>>y;
  11.     if(x>y)
  12.     {
  13.            cout<<"最後一個數必須大於或等於第一個數"<<endl;
  14.            return main();  
  15.     }
  16.     count(x,y);
  17.     system("pause");   
  18.     return 0;
  19. }
  20. int count(int x, int y)
  21. {
  22.     while(x<=y)
  23.     {
  24.                cout<<x<<endl;
  25.                x++;
  26.     }
  27. }  
複製代碼

TOP

返回列表