Nuestro grupo redactor ha pasado mucho tiempo buscando respuestas a tus interrogantes, te ofrecemos la respuesta por esto nuestro objetivo es que te sea de gran apoyo.
Ejemplo: tome n como entrada y verifique cuáles son el número de Armstrong usando una función en el rango de 1 a n en python
num =370# Changed num variable to string, # and calculated the length (number of digits)
order =len(str(num))# initialize sumsum=0# find the sum of the cube of each digit
temp = num
while temp >0:
digit = temp %10sum+= digit ** order
temp //=10# display the resultif num ==sum:print(num,"is an Armstrong number")else:print(num,"is not an Armstrong number")#Output-- 370 is an Armstrong number
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)