Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
52686 shtest 水仙花数 C++ 通过 0 MS 248 KB 264 2024-10-12 10:47:23

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int main() { int n=100; while(n<1000) { if(n==(n/100)*(n/100)*(n/100)+(n/10%10)*(n/10%10)*(n/10%10)+(n%10)*(n%10)*(n%10)) cout<<n<<" "; n++; } cout<<endl; return 0; }


测评信息: