其他分享
首页 > 其他分享> > PAT乙级B1001

PAT乙级B1001

作者:互联网

#include <iostream>
#include<algorithm>
using namespace std;
int main()
{
    int n;
    int k = 0;
    cin >> n;
    while (n != 1) {
        if (n % 2 == 0) {
            n /= 2;
            k++;
        }
        else {
            n = (3 * n + 1) / 2;
            k++;
        }
    }
    cout << k;
    return 0;
}

没什么好说的,很简单,学过C++的应该都懂。

标签:std,main,PAT,int,乙级,++,B1001,include
来源: https://www.cnblogs.com/ZJU-LOSER/p/13307214.html