1 条题解

  • 1
    @ 2021-11-21 20:50:09
    #include <bits/stdc++.h>
    
    using namespace std;
    
    int main()
    {
        int n; cin >> n;
        long long sum = 0;
        int nn = n;
        while ( nn ) sum += pow(nn % 10, 3), nn /= 10;
        if ( sum == n ) puts("Yes");
        else puts("No");
        return 0;
    }
    
  • 1

p1018 判断水仙花数(参考p69页实例2)

信息

难度
2
分类
(无)
标签
递交数
40
已通过
20
通过率
50%
上传者