文章
5
粉丝
50
获赞
0
访问
1.9k
#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; }
登录后发布评论
暂无评论,来抢沙发