Board logo

標題: 函式的建立與執行 (四) - 遞迴 [打印本頁]

作者: 鄭繼威    時間: 2023-3-1 19:00     標題: 函式的建立與執行 (四) - 遞迴

本帖最後由 鄭繼威 於 2023-4-28 20:13 編輯


[attach]15207[/attach]
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. void welcome4(int i){
  5.     cout<<"這裡是welcome4函式,我接到的參數是:"<<i<<endl;
  6.    
  7.     if(i==0)
  8.     {
  9.             cout<<"結束"<<endl;
  10.         }
  11.         else{
  12.                 i--;
  13.                 welcome4(i);               
  14.         }
  15. }


  16. int main()
  17. {
  18.     cout<<"這裡是main函式,準備進入副程式囉!"<<endl;
  19.     system("pause");
  20.     int i;
  21.     cin>>i;
  22.     welcome4(i);
  23.     return 0;   
  24. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2