pow函数
2024-01-10 19:34:18
发布于:广东
1阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main(){
int a, b, c, d;
cin >> a;
b = a / 100;
c = a / 10 % 10;
d = a % 10;
if(pow(b, 3) + pow(c, 3) + pow(d, 3) == a){
cout << "YES";
}else{
cout << "NO";
}
return 0;
}
这里空空如也
有帮助,赞一个