mirror of
https://github.com/TheAlgorithms/C
synced 2024-11-22 05:21:49 +03:00
56b72da9fb
...algorithms to the `math` folder. Co-authored-by: David Leal <halfpacho@gmail.com>
25 lines
408 B
C
25 lines
408 B
C
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
int n, sum = 0, i, num;
|
|
printf("Enter number: ");
|
|
scanf("%d", &n);
|
|
num = n;
|
|
while (n != 0)
|
|
{
|
|
i = n % 10;
|
|
sum = sum + (i * i * i);
|
|
n = n / 10;
|
|
}
|
|
if (sum == num)
|
|
{
|
|
printf("%d is an armstrong number!\n", num);
|
|
}
|
|
else
|
|
{
|
|
printf("%d is not an armstrong number!\n", num);
|
|
}
|
|
return 0;
|
|
}
|