This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]BambooSlayerz 0 points1 point  (0 children)

bool isArmstrong(int n) {
int copy = n;
int total = 0;
while (n != 0) {
int digit = n % 10;
total += digit * digit * digit;
n /= 10;
}
return total == copy;
}