返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. void round4(int x)
  5. {
  6.         while (x >= 0)
  7.         {
  8.                 cout << "這裡是round4(),我收到:" << x << endl;
  9.                 x--;
  10.         }
  11.         cout << "end" << endl;
  12. }

  13. int main()
  14. {
  15.         int num,round;
  16.         cout << "這裡是main(),準備進入副程式" << endl;
  17.         cout << "請輸入整數:";
  18.         cin >> num;
  19.         round4(num);
  20.        
  21.         return 0;
  22. }
複製代碼

TOP

返回列表