当前位置: 代码迷 >> 综合 >> xxx定律 3782
  详细解决方案

xxx定律 3782

热度:27   发布时间:2023-12-18 22:54:18.0

Problem Description

对于一个数n,如果是偶数,就把n砍掉一半;如果是奇数,把n变成 3*n+ 1后砍掉一半,直到该数变为1为止。
请计算需要经过几步才能将n变到1,具体可见样例。

Input

测试包含多个用例,每个用例包含一个整数n,n时表示输入结束。(1<=n<=10000

Output

对于每组测试用例请输出一个数,表示需要经过的步数,每组输出占一行。

Sample Input

3

1

0

Sample Output

5

0

#include <iostream>
int main(int argc, const char *argv[])
{
int n;
while(std::cin >> n && n)
{
int nCount = 0;
while(n != 1)
{
if(n % 2)
{
n = (3 * n + 1) / 2;
}
else
{
n /= 2;
}
++ nCount;
}
std::cout << nCount << std::endl;
}
return 0;
}