私信TA
用户名:zxy021
访问量:1561
签 名:
自我简介:
作者: 暮染轻纱 发表时间:2022-04-24 16:12:32 浏览:95 | 评论:0
解题思路:注意事项:参考代码:
def f(x):
c=1
while x!=1:
if x%2==0:
x=x//2
else:
x=x*3+1
c+=1
return c
while True:
a,b=map(int,input().split())
print(a,b,end=' ')
mc=0
if a>b:
a,b=b,a
for i in range(a,b+1):
mc=max(f(i),mc)
print(mc)
0.0分
0 人评分
看不懂代码解释一下代码? 或者生成一段代码?试试AI编程助手吧