반응형
<코드>
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
System.out.println(factorial(N));
}
public static int factorial(int x) {
if(x <= 1) return 1;
else return x*factorial(x-1);
}
}
https://www.acmicpc.net/problem/10872
반응형
'🧩PS > 🥉Easy' 카테고리의 다른 글
[JAVA] 백준 2798번 - 블랙잭 (0) | 2021.10.05 |
---|---|
[JAVA] 백준 10870번 - 피보나치 수 5 (0) | 2021.10.05 |
[JAVA] 백준 1002번 - 터렛 (0) | 2021.10.05 |
[JAVA] 백준 3053번 - 택시 기하학 (0) | 2021.10.04 |
[JAVA] 백준 4153번 - 직각삼각형 (0) | 2021.10.04 |