编写一个程序,求100~999之间的所有水仙花数。
如果一个三位数等于其各位数字的立方和,则称这个数为水仙花数。
例如:153=1^3+5^3+3^3
因此153就是一个水仙花数
代码如下
#水仙花数 for i in range(100, 1000): sum = 0 temp = i while temp: sum = sum + (temp%10)**3 temp //=10 if sum == i: print(i)
原文地址:https://www.cnblogs.com/SiminL0708/p/12521055.html
时间: 2024-10-06 00:54:30