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

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

筛选

转化为数组

摘要:解题思路:强制类型转换求和注意事项:无参考代码:for i in range(100,1000):    my_str = str(i)    sum = int(my_str[0]) ** 3 + ……

1016一行解(Python)

摘要:注意事项:强行一行,实际编程意义不大参考代码:for i in range(100, 999) : print(i) if sum(map(lambda x : x ** 3, list(map(in……

水仙花数简单理解版

摘要:解题思路:理清题意,水仙花数是三位数的注意事项:太简单了参考代码:for i in range(100,999):    a = (i//100)    b =(i//10)%10    c = i%……

水仙花数题解

摘要:解题思路:注意事项:参考代码:for i in range(100,1000):    s=0    astr=str(i)    for j in astr:        x=int(j)    ……