Ministério da Educação
Brasil um país de todos
Personal tools
Navigation
Log in


Forgot your password?
 
Document Actions

slides05-ex3.py

by Cicero Garrozi last modified 2015-04-14 07:18

Click here to get the file

Size 1 kB - File type text/python-source

File contents

#calcula o fatorial de um numero menor ou igual a 20
x = int(input("Digite o numero para calcular o fatorial: "))
if x <= 20:
    i = 2
    resultado = 1
    while i <= x:
        resultado *= i
        i+= 1
    print "O fatorial de",x,"e:",resultado
    print "O fatorial de %d e: %d"%(x, resultado)
else:
    print "So posso calcular o fatorial de numeros ate 20"
    

Powered by Plone CMS, the Open Source Content Management System

This site conforms to the following standards: