题解 1119: C语言训练-"水仙花数"问题1

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

C语言训练-"水仙花数"问题1

摘要:解题思路:注意事项:参考代码:int po(int num){    return num*num*num;}int main(){    int num=0;    scanf("%d",&num)……

水仙花数问题

摘要:解题思路:输入一个数,分别求出个十百位,使用次方函数与原数比较_ueditor_page_break_tag_注意事项:pow函数需要引入<math.h>头文件参考代码:#include<iostre……

个人认为比较直观

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int a,b,c,x;    scanf("%d",&x);    a=x/100;    b=x/10……

叙利亚战损版,凑合着看吧

摘要:解题思路:注意事项:分解百位数每个数字参考代码:#include<stdio.h>int main(){    int n,x,y,z,t;    scanf("%d",&n);    x=n/100……