/*
2022年3月29日17点24分
程序作用:输出所有的水仙数,即:一个三位数,其各位数字立方和等于该数本身。
*/
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
for(int i = 100; i <= 999; i++)
{
int c = i % 10;
int b = i / 10 % 10;
int a = i / 100;
if (a * a * a + b * b * b + c * c * c == i) cout << i << endl;
}
return 0;
}