Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このプログラムがどのように動作するか、
fact(static int n) { int f=1; if(n<=1) return 1; else { f=n*fact(n-1); return f; } }
関数がどのように呼び出して値を返すかは、n と最終出力が 1 である理由によって異なります。