标签:ros 因此 div 编写 pytho 立方和 code 个数 class
编写一个程序,求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)
【python】编写一个程序,求100~999之间的所有水仙花数
标签:ros 因此 div 编写 pytho 立方和 code 个数 class
原文地址:https://www.cnblogs.com/SiminL0708/p/12521055.html