Skip to content

Instantly share code, notes, and snippets.

@fkenjikamei
Last active August 5, 2017 03:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fkenjikamei/5409d19eee09d40a9a0bd68ebf2d214a to your computer and use it in GitHub Desktop.
Save fkenjikamei/5409d19eee09d40a9a0bd68ebf2d214a to your computer and use it in GitHub Desktop.
Fatorial Impar
n = int(input("Numero?"))
fat=1
for x in range(1,n+1):
if(x%2!=0):
fat = fat*x
print(fat)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment