Cerergas
4 год назад
Если кто сможет, посчитайте
ОТВЕТЫ
Veselin
Nov 19, 2020
8. N = int( input() )
def factorial(K):
PROD = 1
I = 2
while I <= K:
PROD *= I
I += 1
print(PROD)
N=int(input())
factorial(N)
599
Смежные вопросы:
8. N = int( input() )
def factorial(K):
PROD = 1
I = 2
while I <= K:
PROD *= I
I += 1
print(PROD)
N=int(input())
factorial(N)