Untitled

mail@pastecode.io avatar
unknown
python
5 months ago
165 B
4
Indexable
numero = int(input('Digite um número: '))
if numero > 0:
    fatorial = 1
    for item in range(1,numero +1):
        fatorial = fatorial * item
    print(fatorial)
Leave a Comment