解题思路:
注意事项:
参考代码:
/* */ #include <cstdio> #include <algorithm> #include <iostream> using namespace std; bool check(int n){ int a=n/100; int b=n%100/10; int c=n%10; int t= a*a*a + b*b*b + c*c*c; if(t==n) return true; return false; } int main(){ int n; cin>>n; if(check(n)) cout<<"YES"; else cout<<"NO"; return 0; }
0.0分
2 人评分