Answers for "c program to check the number is armstrong or not"

C
2

armstrong number in c

#include <stdio.h>
int main() {
    int num, originalNum, remainder, result = 0;
    printf("Enter a three-digit integer: ");
    scanf("%d", &num);
    originalNum = num;

    while (originalNum != 0) {
       // remainder contains the last digit
        remainder = originalNum % 10;
        
       result += remainder * remainder * remainder;
        
       // removing last digit from the orignal number
       originalNum /= 10;
    }

    if (result == num)
        printf("%d is an Armstrong number.", num);
    else
        printf("%d is not an Armstrong number.", num);

    return 0;
}
Posted by: Guest on July-16-2020
0

c program to check the number is armstrong or not

#include <stdio.h>
#include <math.h>
void main ()
{
    int n,t,r,c,s=0;
    printf("Enter the number: ");
    scanf("%d",&n);
    t=n;

        while(t!=0)
        {
            r=t%10;
            c=pow(r,3);
            s=s+c;
            t=t/10;
        }

        if(s==n)
            printf("Armstrong");
        else
            printf("Not Armstrong");
}
Posted by: Guest on June-24-2021
1

armstrong number in c

#include <stdio.h>
#include <stdlib.h>
#include <math.h>

int cube(int a)
{
    int c;
    c =  a*a*a;
    return c;
}

int armnum(int *a)
{
    int x = *a, n = 0, rem, r = 0;
    while (x != 0) {
        x /= 10;
        n++;
    }
    x = *a;
    while (x != 0) {
        rem = x % 10;
        r += cube(rem);
        x /= 10;
    }
    if(r == *a){
        return 1;
    }
}

int main()
{
    int a, y;
    scanf("%d", &a);
    y = armnum(&a);
    if(y == 1){
        printf("It is an Armstrong number.");
    }
    else{
        printf("It is not an Armstrong number.");
    }
}
Posted by: Guest on August-26-2020

Code answers related to "c program to check the number is armstrong or not"

Code answers related to "C"

Browse Popular Code Answers by Language