728x90
반응형
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;
public class Main {
public static int factorial(int num) {
if(num!=0)
return num*factorial(num-1);
else
return 1;
}
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringBuilder sb = new StringBuilder();
// 단어 정렬 문제~!
int N = Integer.parseInt(br.readLine());
int sum = factorial(N);
System.out.println(sum);
}
}
728x90
반응형
'이유's STUDY > 알고리즘 문제풀이' 카테고리의 다른 글
[ 백준 ] 11729 - 하노이 탑 이동 순서 (0) | 2021.08.03 |
---|---|
[ 백준 ] 별찍기 -10 -- Java 이용 (0) | 2021.07.30 |
[ 백준 ] - 10814번 나이순 정렬 / Java 이용 (0) | 2021.07.27 |
[ 백준 ] 1181 - 단어 정렬 / Java 이용 (0) | 2021.07.27 |
[ 백준 ] 11651- 좌표 정렬하기 2 (0) | 2021.07.27 |