간단한 계승 계산 방법을 귀속적으로 쓰다

2442 단어
 1 public class Factorial {
 2 
 3     public static void main(String[] args) {
 4         //  9 
 5         int n = 9;
 6         int result = factorial(n);
 7         System.out.println(n + " :" + result);
 8     }
 9 
10     //  
11     public static int factorial(int n) {
12         if (n == 1) {//  ( )
13             return 1;
14         } else {//  ( )
15             return n * factorial(n - 1);
16         }
17     }
18 
19 }

 
다음으로 전송:https://www.cnblogs.com/zxfei/p/10700355.html

좋은 웹페이지 즐겨찾기