码迷,mamicode.com
首页 > 编程语言 > 详细

面试题编程题01-python打印水仙花数字

时间:2019-05-19 12:33:35      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:面试题   面试   编程   color   pre   python   水仙花数   打印   div   

 

1 for i in range(100,1000):
2     a=int(i/100)
3     b=int((i/10)%10)
4     c=int(i%10)
5     if i==(a**3+b**3+c**3):
6         print(i)

 

面试题编程题01-python打印水仙花数字

标签:面试题   面试   编程   color   pre   python   水仙花数   打印   div   

原文地址:https://www.cnblogs.com/feihujiushiwo/p/10888573.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!