1 #include<iostream> 2 using namespace std; 3 4 int main(){ 5 int n,step; 6 step=0; 7 cin>>n; 8 9 while(n!=1) 10 { 11 if(n%2==0) 12 n=n/2; 13 else 14 n=(3*n+1)/2; 15 step++; 16 } 17 cout<<step; 18 19 return 0; 20 }
好像挺简单的
原文地址:https://www.cnblogs.com/alwayszzj/p/11266517.html
时间: 2024-09-29 10:23:09