标签:names pac c++ cout 应该 str return pat namespace
#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++的应该都懂。
标签:names pac c++ cout 应该 str return pat namespace
原文地址:https://www.cnblogs.com/ZJU-LOSER/p/13307214.html