2022-08-24 c# 遞迴測試 156 0 C# 2022-08-26 網頁鋪陳資料時很少用到遞迴,第一次寫難免會卡,還好沒有頓很久。 static void Main() { Console.WriteLine(Program.Reduce(30)); } static int Reduce( int v1) { int v2 = 0; if(v1 > 0) { v2=v1+ Reduce(v1-1); } return v2; } iT邦幫忙 個人帳號:Kw6732 c# 回首頁