Sunday, July 21, 2013

Check Armstrong Number in C

Warp to check a number is Armstrong
C program to check whether a number is Armstrong or not
 Simple c program for Armstrong number
Armstrong number in c with output

#include<stdio.h>
int main(){
    int num,r,sum=0,temp;
    printf("Enter a number: ");
    scanf("%d",&num);
    temp=num;
    while(num!=0){
         r=num%10;
         num=num/10;
         sum=sum+(r*r*r);
    }
    if(sum==temp)
         printf("%d is an Armstrong number",temp);
    else
         printf("%d is not an Armstrong number",temp);
    return 0;
}

No comments:

Post a Comment