题解 1016: [编程入门]水仙花数判断

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

筛选

双层循环找出水仙花数

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){    int m,n,sum,i;    for(m=100;m<=99……

python水仙花数判断

摘要:解题思路:直接用到pow函数注意事项:注意符号参考代码:for i in range(100,999):    a=int(i%10)    b=int(i/10%10)    c=int(i/100……

计算水仙花数

摘要:解题思路通过除法与取余将该三位数的每一位分离出来注意事项:参考代码:#include<stdio.h>int main(){    int a,b,c,all;    int n,i;    //sc……

[编程入门]水仙花数判断

摘要:解题思路:思考百位、十位、个位怎么表示注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,s,m=100; while(m<1000) { a=m/1……