一本通2029;水仙花数

代妈;

#include 
using namespace std;

int main() {
    for (int i = 100; i < 1000; i++) {
        int x, y, z;
        z = i % 10;
        y = i % 100 / 10;
        x = i / 100;
        if (i == x * x * x + y * y * y + z * z * z)
            cout << i << endl;
    }
    return 0;
}

你可能感兴趣的:(c++,算法,蓝桥杯)