Write A Program To Check Number Is Armstrong Or Not
Armstrong Number :- 
An Armstrong number of three digits is an integer such that the sum of the cubes of its digits is equal to the number itself. For example, 371 is an Armstrong number since 3**3 + 7**3 + 1**3 = 371 
Logic :- 
Logic is very simple you have to you have to separate all digit and sum of the cube of digit find 
Example :- let's check 371  
then divide by 10 we got 371/10=1 .cube of 1 is 1 store this result and again divide by 10 we got 37/10=7 . cube of 7 is 343 store and add to previously got result 1 so now its become 344  ,again divide by 10 we got 3/10=3 cube of 3 is 27 ,Now again add 27+344=371
so the Number is Armstrong Number 
Note :- Divide the number by 10 until it become Zero
                                                                     
                            
Output:
Enter The Number :
456
Number is not Armstrong
need an explanation for this answer? contact us directly to get an explanation for this answer