samuelgao 发表于 2018-12-2 16:05:35

Python 第九讲:1. 编写一个程序,求 100~999 之间的所有水仙花数。

第九讲:1. 编写一个程序,求 100~999 之间的所有水仙花数。


发表一个 快捷 答案:

for i in range(100, 1000):
    temp = str(i)
    if i == (int(temp))**3 + int((temp))**3+int((temp))**3:
      print(i)
      
   

SHthenew 发表于 2019-3-3 20:51:13

大佬{:5_106:}

mysteryer 发表于 2019-9-12 01:21:56

厉害,我也是这个思路,但是我忘了字符串就可以索引,还一个劲地想把它变成列别

yg飞许 发表于 2023-1-11 16:38:21

{:10_254:}
页: [1]
查看完整版本: Python 第九讲:1. 编写一个程序,求 100~999 之间的所有水仙花数。