如果一个 3 位数等于其各位数字的立方和,则称这个数为水仙花数。例如:153 = 1^3 ...
for i in range(100, 1000):sum = 0
temp = i
while temp:
sum = sum + (temp%10) ** 3
temp //= 10 # 注意这里要使用地板除哦~
if sum == i:
print(i)
各位大佬 这道题 sum = sum + (temp%10) ** 3思路我不太懂 能否请前辈大佬们赐教? https://fishc.com.cn/forum.php?mod=viewthread&tid=156827 zltzlt 发表于 2020-2-19 11:04
https://fishc.com.cn/forum.php?mod=viewthread&tid=156827
感谢大佬!
页:
[1]