bzoj 1666: [Usaco2006 Oct]Another Cow Number Game 奶牛的数字游戏【模拟】

模拟

#include<iostream>
#include<cstdio>
using namespace std;
int n,ans;
int main()
{
	scanf("%d",&n);
	for(;n>1;ans++)
	{
		if(n&1)
			n=n*3+1;
		else
			n>>=1;
	}
	printf("%d\n",ans);
	return 0;
}
posted @ 2018-04-27 11:25  lokiii  阅读(147)  评论(0编辑  收藏  举报