2021년 10월 02일 토요일 12시
백준_10872_팩토리얼_재귀_브론즈3
https://www.acmicpc.net/problem/10872
-> Bufferedreader 연습
-> 기본적인 구현문제
-> 어렵지 않다.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main{
public static void main(String[] args) throws IOException {
//Scanner sc = new Scanner(System.in);
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
//int N = sc.nextInt();
int N = Integer.parseInt(br.readLine());
int sum = factorial(N);
System.out.println(sum);
}
public static int factorial(int N) {
if(N <=1) return 1;
return N *factorial(N-1);
}
}
'알고리즘 > 백준' 카테고리의 다른 글
[재귀] 백준_11729_하노이탑_재귀_실버2 (0) | 2021.10.03 |
---|---|
[재귀] 백준_10870_피보나치수 5_재귀_브론즈2 (0) | 2021.10.02 |
백준_17472_다리만들기2 삼성 SW A형 (0) | 2021.10.02 |
백준_17471_개리멘더링_ 삼성 SW A형 (0) | 2021.09.25 |
백준_17406_배열돌리기_ 삼성 SW A형 (0) | 2021.09.24 |