Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
135082 袁龙浩 水仙花数II C++ Wrong Answer 1 MS 272 KB 546 2025-11-02 15:01:48

Tests(0/10):


Code:

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int m,n,x=0,y=0,z=0,s=0; cin>>m>>n; for(int i=m;i<=n;i++){ x=i%10; y=i%100/10; z=i%100; if(i==x*x*x+y*y*y+z*z*z){ cout<<i<<" "; s=1; } } if(s=0) cout<<"no"; return 0; }


Run Info:

------Input------
400 600
------Answer-----
407
------Your output-----