用python写水仙花数的代码
时间: 2023-04-03 19:03:35 浏览: 122
Python水仙花数.zip
以下是用 Python 写水仙花数的代码:
for num in range(100, 1000):
sum = 0
temp = num
while temp:
sum += (temp % 10) ** 3
temp //= 10
if num == sum:
print(num)
阅读全文