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

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

筛选

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

摘要:解题思路:由于确定为三位数,所以直接求各位数字即可注意事项:参考代码:#include<iostream>usingnamespacestd;intmain(){&nbsp;&am……

C++输出所有水仙花数

摘要:解题思路:注意事项:参考代码:#include<iostream>usingnamespacestd;intmain(){&nbsp;&nbsp;inti,j;&n……

蛮力法求解水仙花数

摘要:解题思路:由题可知,水仙花数为:abc=a^3+b^3+c^3;且100<水仙花数<1000即可用循环的方法找到100~1000中的所有数再逐一判断是否是水仙花数注意事项:使用pow函数时……

习题习题。

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>using&nbsp;namespace&nbsp;std;bo……

使用for 循环语句

摘要:解题思路:注意事项:参考代码:#include<iostream>using&nbsp;namespace&nbsp;std;int&nbsp;main(){for……

c加加 解决问题

摘要:解题思路:注意事项:参考代码:#include<iostream>usingnamespacestd;#include<math.h>intmain()&nbsp;{f……