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

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

筛选

新手常规简易

摘要:解题思路:常规注意事项:参考代码:#include<stdio.h>int main(){    int num=100;    int a,b,c;    for(num==100;(99<num)……

水仙花数判断

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int a,b,c,n;    for(n=100;n<=999;n++)    {        a=n……

水仙花数判断

摘要:参考代码:#include"bits/stdc++.h" using namespace std; int a[1111]; bool check(int z){ int q=0; in……

[编程入门]水仙花数判断 (C语言代码)

摘要:解题思路:三位数:for()循环从100到1000三次方:用math.h pow(x,y)计算x的y次幂三位数:个位10取余 十位100取余除十或除十取余10 百位除100参考代码:#include ……

"水仙花数判断"题解

摘要:解题思路:要判断一个数是不是水仙花数,就是在判断它的百、十、个位的立方是否等于它本身。要取一个数的百、十、个位:百:x/100;十:x%100/10;个:x%10.立方可以调用math.h库中的pow……