标签:style 立方和 print python练习 打印 display 水仙花 程序 bsp
#题目:打印出所有的"水仙花数",所谓"水仙花数"是指一个三位数,其各位数字立方和等于该数本身。例如:153是一个"水仙花数",因为153=1的三次方+5的三次方+3的三次方。 for i in range(100,1000): x = int(i / 100) y = int((i - x*100)/10) z = i - x*100 - y*10 if i == ( x**3+y**3+z**3): print(‘%s 是水仙数‘%i)
标签:style 立方和 print python练习 打印 display 水仙花 程序 bsp
原文地址:https://www.cnblogs.com/yelublue/p/8970987.html