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

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

筛选

简易,易懂

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

最普通的解题方法

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

新手写水仙花数判断(c++已过)

摘要:解题思路:由于确定为三位数,所以直接求各位数字即可注意事项:参考代码:#include<iostream>using namespace std;int main(){    for(int i=10……

循环+一维数组解决水仙花

摘要:解题思路:分割出每一位数,求立方和,相加跟原数比较注意事项:***0,1不算,要从2开始遍历****注意刷新和(res),数组序号i参考代码:#include <stdio.h> int main()……