私信TA
用户名:ding876255970
访问量:43276
签 名:
不怕别人比你优秀,就怕别人比你努力!
自我简介:
作者: Flamer 发表时间:2017-07-13 16:41:32 浏览:728 | 评论:0
解题思路:注意事项:参考代码:
#include<stdio.h> main() { int x,a,b,c; for(x=100;x<=999;x++) { a=x/100; b=x%100/10; c=x%10; if(a*a*a+b*b*b+c*c*c==x) { printf("%d\n",x); } else { } } return 0; }
0.0分
0 人评分