C program to check Armstrong Number in C

Configurare noua (How To)

Situatie

Solutie

Pasi de urmat

Let’s try to understand why 371 is an Armstrong number.

371 = (3*3*3)+(7*7*7)+(1*1*1)

where:

(3*3*3)=27

(7*7*7)=343

(1*1*1)=1

So:

27+343+1=371

Let’s see the c program to check Armstrong Number in C.

#include<stdio.h>

int main()

{

int n,r,sum=0,temp;

printf(“enter the number=”);

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;

}

 

Tip solutie

Permanent

Voteaza

(8 din 27 persoane apreciaza acest articol)

Despre Autor

Leave A Comment?