返回列表 發帖
  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.    
  18.     system("pause");
  19.     return 0;
  20. }int count(int x,int y)
  21. {
  22.   
  23.    
  24.     while(x<=y)
  25.     {
  26.                cout<<x<<endl;
  27.                x++;
  28.     }
  29. }
複製代碼

TOP

返回列表