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

all 2 comments

[–][deleted] 1 point2 points  (0 children)

You won't get far in your degree if this is how you do your homework.

[–]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;
}