Armstrong Number Wiki Code Example


Example 1: armstrong number

sum of cubes of the digits

Example 2: armstrong number

temp=n;     while(n>0)     {     r=n%10;     sum=sum+(r*r*r);     n=n/10;     }     if(temp==sum)     printf("armstrong  number ");     else     printf("not armstrong number");     return 0;

Example 3: Armstrong number

Enter the Number:

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?