Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
96649 | 王思颜 | 水仙花数II | C++ | Accepted | 1 MS | 272 KB | 318 | 2024-11-09 11:30:47 |
#include<bits/stdc++.h> using namespace std; int n,m,a = 0; int main(){ cin>>m>>n; for (int i = m;i <= n;i++){ int g = i % 10; int s = i / 10 % 10; int b = i / 100 % 10; if (g * g * g + s * s * s + b * b * b == i){ cout<<i<<" "; a++; } } if (a == 0){ cout<<"no"; } return 0; }