[백준 알고리즘] 10872번 팩토리얼 (Python, Java)
언어, 알고리즘 공부/백준2020. 3. 10. 17:16[백준 알고리즘] 10872번 팩토리얼 (Python, Java)

재귀로 푸는 방법 N = int(input()) def factorial(N): if N 0: factorial *= N N-=1 print(factorial) import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; 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(f..

image