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
Comments
Post a Comment