/*
* Main.c
* 1001. 害死人不偿命的(3n+1)猜想
* Created on: 2014年8月27日
* Author: Boomkeeper
*********测试通过*******
*/ #include <stdio.h> int main(void){ int n;//题目中n
int count=;//计数 scanf("%d",&n); while(n!=){
if(n%==){
n/=;
} else{
n=(*n+)/;
}
count++;
} printf("%d\n",count); return ;
}
题目链接: