1016: [编程入门]水仙花数判断 摘要:解题思路:分别求出三位数的水仙花数的百位数,十分位数,个位数后。分别对其进行三次方处理判断即可注意事项:参考代码:#include<stdio.h>#include<math.h>int main()…… 题解列表 2023年09月24日 0 点赞 0 评论 111 浏览 评分:0.0
水仙花数判断 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(){ for(int i=100;i<=999;i++){ int n=i, s…… 题解列表 2023年09月14日 0 点赞 0 评论 60 浏览 评分:0.0
使用for 循环语句 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { for (int n = 100; n < 1000;…… 题解列表 2023年09月04日 0 点赞 0 评论 80 浏览 评分:9.9
求水仙花数 摘要:预览,如果感觉基本编辑界面太小太窄也可以使用全屏。** ##### 插入代码 x=y=z=d=0 for i in range(100,1000): x=i//100 y…… 题解列表 2023年06月11日 0 点赞 0 评论 131 浏览 评分:0.0
python水仙花数判断 摘要:解题思路:直接用到pow函数注意事项:注意符号参考代码:for i in range(100,999): a=int(i%10) b=int(i/10%10) c=int(i/100…… 题解列表 2023年05月26日 0 点赞 0 评论 104 浏览 评分:0.0
[编程入门]水仙花数判断 摘要:一、解题思路:for()循环水仙花数为三位数,所以循环从100开始,到999结束i/100:百位上的数,(i%100)/10:十位上的数,i/10:个位上的数C参考代码:#include <stdio…… 题解列表 2023年05月06日 0 点赞 0 评论 56 浏览 评分:0.0
1016题:水仙花数判断 摘要:# 自己写的代码 ```c #include int main() { int i; for(i=0;i99){ if((((i/100)*(i/100)*(i/1…… 题解列表 2023年04月27日 0 点赞 0 评论 90 浏览 评分:0.0
水仙花数判断 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,c,d; for(a=100;a<1000;a++) { b=…… 题解列表 2023年04月20日 0 点赞 0 评论 108 浏览 评分:9.9
编写题解 1016: [编程入门]水仙花数判断 摘要:解题思路:主要在于把三位数的每一位数写出来参考代码:import math for i in range(100,1000): a=i//100 b=(i-a*100)//10 …… 题解列表 2023年03月30日 0 点赞 0 评论 91 浏览 评分:0.0