文章

5

粉丝

50

获赞

0

访问

1.9k

头像
数字猜想 题解:
P1964 华东师范大学2023年机试
发布于2024年7月1日 16:34
阅读数 318

#include<iostream>
#include<string>
using namespace std;

int main()
{
    int x;
    cin >> x;
    int ans = 0;
    while (x != 1) {
        ans++;
        if (x % 2)x = x * 3 + 1;
        else x /= 2;
    }
    cout << ans;
    
}

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发