#include<iostream>using namespace std;int main() {/**个数的3次方+十位的三次方+百位的三次方=这个数的本身*/for (int i = 100; i <= 999; i++){int a = i / 100; //百位数int b = (i / 10)%10; //十位数int c = i % 10; //个位数if (i == a * a*a + b * b*b + c * c*c) {cout << i << endl;}}system("pause");}