返回列表 發帖
  1. #include<iostream>
  2. using namespace std;
  3. int count(int, int);
  4. int main()
  5. {
  6.     int x, y;
  7.     cout<<"請輸入連續數列的第一個數: ";
  8.     cin>>x;
  9.     cout<<"請輸入連續數列的最後一個數: ";
  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

返回列表