[백준] #10872 팩토리얼 python

2022. 12. 28. 00:07

https://www.acmicpc.net/problem/10872

 

10872번: 팩토리얼

0보다 크거나 같은 정수 N이 주어진다. 이때, N!을 출력하는 프로그램을 작성하시오.

www.acmicpc.net

 

 

📕 설명 📕

팩토리얼을 구현한 재귀 함수

 

🧑🏻‍💻 나의 풀이 🧑🏻‍💻

N = int(input())

def factorial(N):
    if N == 0:
        return 1
    if N == 1:
        return 1
    return N * factorial(N-1)
print(factorial(N))

BELATED ARTICLES

more