Page 66 - PYTHON-12
P. 66

Program 3:  Write a Program to check if the entered number is Armstrong or not.

               Solution:


               # Program to check if the entered number is Armstrong or not.

               #An Armstrong number has sum of the cubes of its digits is equal to the number itself

               no=int(input("Enter any number to check : "))


               no1 = no

               sum = 0


               while(no>0):

                   ans = no % 10;

                   sum = sum + (ans * ans * ans)


                   no = int (no / 10)

               if sum == no1:

                   print("Armstrong Number")


               else:

                   print("Not an Armstrong Number")
   61   62   63   64   65   66   67   68   69   70   71