To check a number Armstrong number or not using C programming
just copy the bellow code and paste it to your TurboC software. And then run the program.
#include<stdio.h>
#include<conio.h>
void main()
{
int n,t,s=0,r;
clrscr();
printf("enter any number : ");
scanf("%d",&n);
t=n;
while(n>0)
{
r=n%10;
s=s+(r*r*r);
n=n/10;
}
if(t==s)
printf("%d is an armstrong number",t);
else
printf("%d is not an armstrong number",t);
getch();
}
0 comments:
Post a Comment