PAT乙级B1001
Posted zju-loser
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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++的应该都懂。
以上是关于PAT乙级B1001的主要内容,如果未能解决你的问题,请参考以下文章