top of page
Click here to go to the home page of AskTheCode.

Python Program to check Armstrong Number

Asked: Anonymously |Category: Python

num = int(input("Enter a number: "))

sum = 0

temp = num

while temp > 0:

digit = temp % 10

sum += digit ** 3

temp //= 10

if num == sum:

print(num,"is an Armstrong number")

else:

print(num,"is not an Armstrong number")

Recent Posts

See All

Commentaires


bottom of page