You are viewing a single comment's thread. Return to all comments →
Non-recursive python solution...
n = int(input()) fact = 1 while n > 1: fact *= n n -= 1 print(fact)
Seems like cookies are disabled on this browser, please enable them to open this website
Security Encryption Scheme
You are viewing a single comment's thread. Return to all comments →
Non-recursive python solution...