Run ID:150850
提交时间:2026-04-01 15:35:10
#include<bits/stdc++.h> using namespace std; int main(){ for(int x=100;x<=999;x++){ if(x==(x%10)*(x%10)*(x%10)+(x/10%10)*(x/10%10)*(x/10%10)+(x/100)*(x/100)*(x/100)){ cout<<x<<" "; } } return 0; }