题目:打印出所有的“水仙花数”,所谓“水仙花数”是指一个三位数,其各位数字立方和等于该数本身。例如:153是一个“水仙花数”,因为153=1的三次方+5的三次方+3的三次方。
import math
for i in range(1000):
a=int(i%10)#个位数
b=int((i/10)%10)#十位数
c=int(i/100)#百位数
if math.pow(a,3)+math.pow(b,3)+math.pow(c,3)==i:
print(i)