利用for循环与map函数,四行输出水仙花数代码 摘要:解题思路:注意事项:不会可以问,看到会回复参考代码:for i in range(100,999): a,b,c=map(int,str(i)) if i==a**3+b**3+c**3:…… 题解列表 2024年10月17日 0 点赞 0 评论 178 浏览 评分:9.9
转化为数组 摘要:解题思路:强制类型转换求和注意事项:无参考代码:for i in range(100,1000): my_str = str(i) sum = int(my_str[0]) ** 3 + …… 题解列表 2024年04月21日 0 点赞 0 评论 198 浏览 评分:9.9
1016一行解(Python) 摘要:注意事项:强行一行,实际编程意义不大参考代码:for i in range(100, 999) : print(i) if sum(map(lambda x : x ** 3, list(map(in…… 题解列表 2022年11月04日 0 点赞 1 评论 416 浏览 评分:9.9
水仙花数简单理解版 摘要:解题思路:理清题意,水仙花数是三位数的注意事项:太简单了参考代码:for i in range(100,999): a = (i//100) b =(i//10)%10 c = i%…… 题解列表 2022年12月12日 0 点赞 2 评论 391 浏览 评分:9.9
[编程入门]水仙花数判断 3个for循环 摘要: for i in range(10): for j in range(10): for k in range(10): …… 题解列表 2021年12月11日 0 点赞 0 评论 436 浏览 评分:9.9
简单易懂的水仙花(三行python) 摘要:解题思路:一看就会注意事项:一看就会参考代码:for i in range(100,1000): if i==(i//100)**3+(i//10%10)**3+(i%10)**3: …… 题解列表 2023年01月12日 0 点赞 0 评论 468 浏览 评分:9.6
[编程入门]水仙花数判断-题解(Python代码) 摘要:解题思路:注意事项:参考代码:for i in range(100,1000): m=str(i) [a,b,c]=[m[0],m[1],m[2]] z=pow(int(a),3)+…… 题解列表 2020年11月17日 0 点赞 0 评论 548 浏览 评分:9.3
[编程入门]水仙花数判断-题解(Python代码) 摘要:解题思路:拆解成列表,再拆分为3个数,计算得出数值,最后判断输出。注意事项:注意整型和字符型的转换。参考代码:for j in range(100,1000): ls = [int(i) f…… 题解列表 2021年01月18日 0 点赞 0 评论 666 浏览 评分:9.2
水仙花数题解 摘要:解题思路:注意事项:参考代码:for i in range(100,1000): s=0 astr=str(i) for j in astr: x=int(j) …… 题解列表 2021年10月04日 0 点赞 0 评论 197 浏览 评分:9.0
[编程入门]水仙花数判断-题解(Python代码) 摘要:#### 利用两个循环求“水仙花数” ```python for i in range(100, 1000): #循环每一个三位数 sum = 0 for j in str…… 题解列表 2021年01月16日 0 点赞 0 评论 760 浏览 评分:9.0