Run ID:133861

提交时间:2025-10-22 19:43:39

#include<iostream> #include<cstring> using namespace std; int main(){ long long i=100,g,s,b,Sum=0; while(i<1000) { g=i%10; s=i%100/10; b=i/100; if(g*g*g+s*s*s+b*b*b*b==i) { cout<<i<<" "; } i++; } }