标签:要求 == \n ali 它的 之间 大于 math turn
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main()
{
int a,b,c,d,e,i=0,x=0;
while(scanf("%d %d",&a,&b)!=EOF)
{for(i=a;i<=b;i++)
{
c=i%10;
d=(i%100-c)/10;
e=(i-i%100)/100;
if(i==pow(c,3.0)+pow(d,3.0)+pow(e,3.0))
{
if(x!=0)printf(" ");
printf("%d",i);
x++;
}
}
if(x==0)
printf("no");
printf("\n");
x=0;
}
return 0;
}
标签:要求 == \n ali 它的 之间 大于 math turn
原文地址:https://www.cnblogs.com/zhs314159/p/10357738.html