using namespace std;
// An Armstrong number of three digits is an integer that the sum
// of the cubes of its digits is equal to the number itself
// 371 is an Armstrong number: 3**3 + 7**3 + 1**3 = 371
int main()
{
int n = 371, reminder, sum = 0, tmp;
tmp = n;
while (n != 0)
{
reminder = n % 10;
n = n / 10;
sum = sum + (reminder * reminder * reminder);
}
if (sum == tmp)
cout << tmp << " is an Armstrong number" << endl;
else
cout << tmp << " is not an Armstrong number" << endl;
return 0;
}
/*
run:
371 is an Armstrong number
*/