解题思路:
注意事项:
参考代码:
#include<stdio.h>
#include<math.h>
int main ()
{
int a,b,c,x;scanf("%d",&x);
if (x>=100&&x<=999)
{ a=x%10;b=x/10%10,c=x/100%10;
if (x==pow(a,3)+pow(b,3)+pow(c,3))
printf("1");
else printf("0");
}else printf("0");
return 0;
}
0.0分
0 人评分