Ministério da Educação
Brasil um país de todos
Personal tools
You are here: Home Members Roberta Andrade de Araújo Fagundes Introdução a Programação Dúvidas de Fatorial
Navigation
Log in


Forgot your password?
 
Document Actions

Dúvidas de Fatorial

by Roberta Andrade de Araújo Fagundes last modified 2009-08-28 01:30

resolução com FOR e WHILE

Click here to get the file

Size 1 kB - File type text/plain

File contents

================ FATORIAL ==================================

n = int (input("Fatorial de um numero:"))
for i in range(n):
  print(i, " ", n)
  if (i == 0):
      fat = 1*n
  else:
     fat = fat*i   
print(fat)


================ FATORIAL ==================================
fat = 1
contador = 1
n = int (input("Fatorial de um numero:"))
while (contador <= n):
  fat = fat * contador  
  contador = contador +1
	
print(fat)

Powered by Plone CMS, the Open Source Content Management System

This site conforms to the following standards: