# Bucles# Factorial# Calcula el factorial de un número, de forma que:# n! = n * (n - 1) * (n - 2) ... * 1# 5! = 5 * 4 * 3 * 2 * 1 x = int(input("Dame un valor entero: ")) resultado = 1 while x > 1: resultado *= x x -= 1 print("Factorial:", resultado)
5
Dame un valor entero: Factorial: 120
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!