Advertisement
DonerKebab

giaithua

Oct 5th, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.08 KB | None | 0 0
  1. def giaithua(x):
  2.     if x ==1 :
  3.         return 1
  4.     else:
  5.         return x * giaithua(x-1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement