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)
Security Encryption Scheme
You are viewing a single comment's thread. Return to all comments →
Non-recursive python solution...