Loading, please wait...

A to Z Full Forms and Acronyms

Program to Check Armstrong Number | Python

Mar 17, 2021 Python, 1696 Views
Program to Check Armstrong Number | Python

Program to Check Armstrong Number | 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")
A to Z Full Forms and Acronyms

Related Article