Program to cheque enter three digit number is Armstrong or not in C-language


#include<stdio.h>
#include<math.h>
int main()
{
    int a,b,c,m,x,arm;
    printf("Enter three digit number\n");
    scanf("%d",&x);
    m=x;
    a=x%10;
    x=x/10;
    b=x%10;
    x=x/10;
    c=x%10;
    x=x/10;
    arm=pow(a,3)+pow(b,3)+pow(c,3);
    if(arm==m)
    {
        printf("Enter number is Armstrong");
    }
     else
{
printf("Enter number is not Armstrong");
   }

OUTPUT
Enter three digit number
153
Enter number is Armstrong


Comments

Popular posts

Creative pattern of butterfly in C-language

Program to show present time and date in C-language

Introduction of C-language.

Program to cheque enter number is a perfect number or not using if else in C-language

Program to cheque four digits number is palindrome or not in C-language

Program to print the cube of a number in c-language

Simple Hello world program in c- language