题解 | #魔法数字变换#
魔法数字变换
https://www.nowcoder.com/practice/db41a6ce80a646aa9a5eb6252ac2df76
#include <stdio.h>
int main() {
    int n = 0;
    int count = 0;
    scanf("%d", &n);
    while (1) {
        count++;
        if (n % 2 == 0) {
            n = n / 2;
        } else
            n = n * 3 + 1;
        if (n == 1) {
            break;
        }
    }
    printf("%d", count);
    return 0;
}



 投递上海得物信息集团有限公司等公司10个岗位
投递上海得物信息集团有限公司等公司10个岗位 查看7道真题和解析
查看7道真题和解析