VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > temp > python入门教程 >
  • 查找100-999之间的水仙花数

水仙花数,即一个三位数的个,十,百三位数字的立方和等于该三位数。

复制代码
 1 from math import pow
 2 
 3 if __name__ == "__main__":
 4     
 5     l = list()
 6     for x in range(100, 1000):
 7         x1, x2, x3 = str(x)
 8         if pow(int(x1), 3) + pow(int(x2), 3) + pow(int(x3), 3) == x:
 9             l.append(x)
10     print(l)
复制代码

出处:https://www.cnblogs.com/zhengze/p/14070275.html


相关教程