题目:
输入样例:
3
输出样例:
5
分析:简单模拟。
#include<bits/stdc++.h>
using namespace std;
int main()
{
int x=0, result=0;
cin >> x;
while(x!=1){
if(x%2==0)
x/=2;
else
x = (3*x+1)/2;
result++;
}
cout << result;
return 0;
}