题解 | #水仙花数#

水仙花数

http://www.nowcoder.com/practice/dc943274e8254a9eb074298fb2084703

while True:
    try:
        m, n = map(int, input().split())
        lis = []
        for i in range(m, n + 1):
            add = map(lambda x: int(x)**3, str(i))
            if sum(add) == i:
                print(i, end=" ")
                lis.append(i)  # 将水仙花数放在列表里
        if len(lis) == 0:  # 判断如果水仙花数为0时
            print("no")
    except:
        break
全部评论

相关推荐

1 收藏 评论
分享
牛客网
牛客企业服务