解题思路:
注意事项:
参考代码:
#include <iostream>
using namespace std;
int main()
{
int n,m,a,b,c,d;
while(cin>>n>>m)
{
d=0;
if(n>m)
{
n=n+m;
m=n-m;
n=n-m;
}
for(int i=n;i<=m;i++)
{
a=i/100;
b=(i/10)%10;
c=i%10;
if(a*a*a+b*b*b+c*c*c==i)
{
cout<<i<<" ";
d=1;
}
}
if(d==0)
cout<<"no"<<endl;
else
cout<<endl;
}
return 0;
}
0.0分
1 人评分