码迷,mamicode.com
首页 > 其他好文 > 详细

数字a尾数是6,6移到最前面之后是这个数a的4倍

时间:2017-12-12 13:46:02      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:body   log   gpo   def   pos   fun   个数   class   int   

这个代码就是找一个数字,就不多说了
def fun(n):
x = n
t = 6
while int(x) > 0:
t *= 10
x = x/10
m = n * 10 +6
if t + n == m * 4:
print(m)


for i in range(1, 100000):
fun(i)

数字a尾数是6,6移到最前面之后是这个数a的4倍

标签:body   log   gpo   def   pos   fun   个数   class   int   

原文地址:http://www.cnblogs.com/lzh-luke/p/8027160.html

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