CryptoJones icon

FactorialsCS1301xII_3.3.2_Refactored

CryptoJones | PRO | 12/21/18 03:51:31 PM UTC | 0 ⭐ | 541 👁️ | Never ⏰ | []
Python |

120 B

|

None

|

0 👍

/

0 👎

factorial_result = 0
for i in range(1, mystery_int):
        factorial_result = i * (i + 1)
print(factorial_result)

Comments

  •  icon
    01/01/70 12:00:00 AM UTC
    Plain Text |

    0 B

    |

    👍

    /

    👎