AC * 999999999999...
2023-12-19 20:11:01
发布于:广东
15阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main(){
int n;
cin >> n;
while(true){
if(n % 2 == 1){
cout << n << "*3+1=";
n = n * 3 + 1;
cout << n << endl;
}else{
cout << n << "/2=";
n /= 2;
cout << n << endl;
}
if(n == 1){
cout << "End";
break;
}
}
return 0;
}
这里空空如也
有帮助,赞一个