题解
2023-12-02 09:45:01
发布于:广东
0阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a,b,c,s;
cin>>s;
a = s%10;
b = (s%100)/10;
c = s/100;
if(a*a*a + b*b*b + c*c*c == s)
{
cout<<"YES";
}else{
cout<<"NO";
}
return 0;
}
这里空空如也
有帮助,赞一个