A30673.【循环】【入门】角谷猜想
2024-12-31 22:28:45
发布于:江苏
0阅读
0回复
0点赞
#include<iostream>
using namespace std;
int main(){
int n;
cin>>n;
while(n!=1){
cout<<n;
if(n%2){
cout<<"*3+1=";
n=n*3+1;
}else{
cout<<"/2=";
n/=2;
}
cout<<n<<endl;
}
cout<<"End";
return 0;
}
这里空空如也
有帮助,赞一个