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

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

筛选

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

摘要:解题思路:分别求出三位数的水仙花数的百位数,十分位数,个位数后。分别对其进行三次方处理判断即可注意事项:参考代码:#include<stdio.h>#include<math.h>int main()……

水仙花数判断

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

使用for 循环语句

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

求水仙花数

摘要:预览,如果感觉基本编辑界面太小太窄也可以使用全屏。** ##### 插入代码 x=y=z=d=0 for i in range(100,1000): x=i//100 y……

python水仙花数判断

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

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

摘要:一、解题思路:for()循环水仙花数为三位数,所以循环从100开始,到999结束i/100:百位上的数,(i%100)/10:十位上的数,i/10:个位上的数C参考代码:#include <stdio……

1016题:水仙花数判断

摘要:# 自己写的代码 ```c #include int main() { int i; for(i=0;i99){ if((((i/100)*(i/100)*(i/1……

水仙花数判断

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