#include<stdio.h>
int main()
{
int n,r,sum=0,temp;
printf("enter the number=\n");
scanf("%d",&n);
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;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: