The ones who are crazy enough to think they can change the world are the ones who do.- Steve Jobs
When an n-digit number is equal to the sum of the nth powers of its digit, then it is said to be an Armstrong Number.
Okay, Its time for challenging your mathematic friend to find whether the given number is an armstrong or not. As the race starts, you, the programmer will start writting a C program to find the given number is armstrong or not, but your mathematic friend will wins the race for first question by simply doing a mathematic calculations with paper and pen. But to find whether the given series of numbers is armstrong or not, Definitely you wins. Here is a C program to find whether a given number is armstrong or not to help you.
#include <stdio.h> int main() { int a, b, c, z; printf("Enter a number : "); scanf("%d",&a); b = a; z = 0; while(a > 0) { c = a % 10; z = z + (c * c *c); a = a / 10; } if(z == b) printf("\n%d is an armstrong number", b); else printf("\n%d is not an armstrong number", b); return 0; }
Enter a number : 153 153 is an armstrong number
We may make mistakes(spelling, program bug, typing mistake and etc.), So we have this container to collect mistakes. We highly respect your findings.
© Copyright 2019