Saltar al contenido

cómo encontrar el número de Armstrong en el ejemplo de código de Python

Este enunciado ha sido aprobado por nuestros especialistas para garantizar la veracidad de este ensayo.

Ejemplo 1: cómo comprobar si un número es armstrong en python

# Python program to check if the number is an Armstrong number or not# take input from the user
num =int(input("Enter a number: "))# initialize sumsum=0# find the sum of the cube of each digit
temp = num
while temp >0:
   digit = temp %10sum+= digit **3
   temp //=10# display the resultif num ==sum:print(num,"is an Armstrong number")else:print(num,"is not an Armstrong number")

Ejemplo 2: tome n como entrada y verifique cuáles son los números de Armstrong usando una función en el rango de 1 an 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

Ejemplo 3: cómo comprobar si un número es armstrong en python

num =1634# 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")

Comentarios y calificaciones

Si tienes alguna vacilación y disposición de desarrollar nuestro tutorial puedes escribir una apostilla y con placer lo ojearemos.

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *