20231119 - 水仙花数

include

include

using namespace std;

int main() {

for (int i = 100; i <= 999; i++)
{
    int a = i / 100;
    int b = i / 10 % 10;
    int c = i % 10;
    if (a * a * a + b * b * b + c * c * c == i)
    {
        cout << i << endl;
    }
}
return 0;

}