PAT乙题1001-python

n=int(input());count=0
while n!=1 :
    if n%2!=0 :
        n=(3*n+1)/2
    else : n/=2
    count+=1
print(count)

没有count++

else:后面有冒号!

要输入值的变量要用int,不用输入值的变量不用!

你可能感兴趣的:(python)