[编程入门]水仙花数判断-题解(Python代码)_利用字符串切片索引实现 摘要:``` python for i in range(100, 999): num = str(i) a = int(num[0]) b = int(num[1]…… 题解列表 2020年02月28日 0 点赞 1 评论 990 浏览 评分:7.3
[编程入门]水仙花数判断-题解(Java代码) 摘要:public class Main { public static void main(String[] args){ for(int x=1;x…… 题解列表 2020年04月29日 0 点赞 1 评论 597 浏览 评分:7.3
水仙花数判断 摘要:解题思路:对三位数的取整及取余即可。注意事项:其中十位数要先取整再取余。参考代码:#include<stdio.h>#include<math.h>int main(){ int n,s; for(n…… 题解列表 2021年04月24日 0 点赞 1 评论 218 浏览 评分:7.3
1016: [编程入门]水仙花数判断(python代码) 摘要:解题思路: 1.用for循环,将范围设在100~999(所有的三位数) 2.将百位、十位和个位的值分别赋给三个变量 3.进行判断,符合条件的输出注意事项: 无参考代码:for i in ran…… 题解列表 2022年07月20日 0 点赞 0 评论 576 浏览 评分:7.4
编写题解 1016: [编程入门]水仙花数判断(python超短易理解) 摘要:解题思路:注意事项:参考代码:for i in range(100, 1000): if pow(int(str(i)[0]), 3) + pow(int(str(i)[1]), 3…… 题解列表 2022年04月09日 0 点赞 0 评论 359 浏览 评分:8.0
水仙花数判断 摘要:解题思路: 1.求水仙花数的关键是对个位上的数、十位上的数和百位上的数的寻找 1.1求个位上的数可以直接该数字对10取余。即为个位上的数 题解列表 2021年08月03日 0 点赞 0 评论 251 浏览 评分:8.0
Kanna-水仙花数判断--C 摘要: #include int main(){ int h,t,b; int i; //i从100开始到999,限定了i是3位数 …… 题解列表 2019年11月21日 0 点赞 0 评论 791 浏览 评分:8.0
[编程入门]水仙花数判断 (C++代码) 摘要:```cpp #include #include #include using namespace std; int main() { int i;int s; for (i=10…… 题解列表 2019年11月23日 0 点赞 0 评论 482 浏览 评分:8.0
[编程入门]水仙花数判断-题解(C语言代码) 摘要:##### 解题思路: 据题可得 ,它所要求的是在100到999之间选出满足 “水仙花数” 这一条件的数 ,因为水仙花数具有相同的特征 ,我想到了要建立一个满足 水仙花数 的一函数 ,然后让函数返回…… 题解列表 2019年10月15日 0 点赞 0 评论 474 浏览 评分:8.0
Manchester- C语言程序设计教程(第三版)课后习题6.6 摘要:解题思路:判断100 到999的所有数,是水仙花数,输出;代码好久之前写的了,没写题解,现在补一下,讲的没当时做的清楚;注意事项:参考代码:#include<stdio.h> #include<ma…… 题解列表 2017年12月06日 23 点赞 2 评论 1093 浏览 评分:8.0