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

1001 害死人不偿命的(3n+1)猜想

时间:2018-12-17 20:22:52      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:oat   int   raw_input   str   color   ring   python3   lse   span   

https://pintia.cn/problem-sets/994805260223102976/problems/994805325918486528

 

n=int(input("please input the number:"))
i=0
while n!=1:
  if n%2==0:
    n=n/2
  else:
    n=(3*n+1)/2
  i+=1
print(i)

 

反思:1python3 没有raw_input了,都是input,注意输入的是默认string类型,可以用int ,float 进行格式变化

          2,input里放置面可以放置要输出的内容

1001 害死人不偿命的(3n+1)猜想

标签:oat   int   raw_input   str   color   ring   python3   lse   span   

原文地址:https://www.cnblogs.com/captain-dl/p/10133087.html

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