返回列表 發帖

11101_b2易

本帖最後由 李泳霖 於 2024-5-19 19:43 編輯

詢問輸出結果
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. void func(int n) {
  5.     printf("%d ", 2 * n);
  6.     if (n < 4)
  7.         func(n + 1);
  8.     printf("%d ", 2 * n - 1);
  9. }
  10. int main() {
  11.    func(2);
  12.    system("pause");
  13.    return 0;  
  14. }
複製代碼
本帖隱藏的內容需要回復才可以瀏覽
istak.teach2@gmail.com

此帖僅作者可見

TOP

返回列表