欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

xxx定律

程序员文章站 2022-06-02 20:13:31
...

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

输入描述:
测试包含多个用例,每个用例包含一个整数n,当n为0 时表示输入结束。(1<=n<=10000)

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

示例1
输入
3
1
0
输出
5
0

代码:

#include<stdio.h>
#include<math.h>
#include<algorithm>
#include<string.h>
#include<iostream>
#include<iomanip>
#include<vector>
#include<map>
#include<stack>
#include<queue>
using namespace std;

int computerCount(int number){
	int count = 0;
	while(number != 1){
		if(number % 2 == 0){
			number /= 2;
			count++;
		}else{
			number = 3 * number + 1;
			number /= 2;
			count++;
		}
	}
	return count;
}
int main()
{
	int number;
	while(cin >> number){
		cout << computerCount(number) << endl;
	}
    return 0;
}     
相关标签: NKW 算法 c++