import java.io.InputStreamReader;
import java.io.BufferedReader;
import java.io.IOException;
public class Main{
public static void main(String[] args) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int N = Integer.parseInt(br.readLine());
System.out.println(factorial(N));
}
public static int factorial(int n){
if(n<=1) return 1; // n이 1보다 작거나 같으면 1을 반환
return n*factorial(n-1); // 그렇지 않으면 n*factorial(n-1)로 재귀함
}
}
'[BOJ] - JAVA' 카테고리의 다른 글
[백준] 17478 : 재귀함수가 뭔가요? JAVA 풀이 (0) | 2022.05.22 |
---|---|
[백준] 10870 : 피보나치 수 5 JAVA 풀이 (0) | 2022.05.22 |
[백준] 1065 : 한수 JAVA 풀이 (0) | 2022.05.21 |
[백준] 4673 : 셀프 넘버 JAVA 풀이 (0) | 2022.05.21 |
[백준]15596 : 정수 n개의 합 JAVA 풀이 (0) | 2022.05.21 |