kr老师

tpx041  •  9个月前


include<bits/stdc++.h>

using namespace std ; int main() {

int n;
cin>>n;
cout<<n<<" ";
while (n>1){

if (n%2==0)
{n=n/2;
cout<<n<<" ";
}
else
{n=n*3+1;
cout<<n<<" ";
}

} return 0;

}


评论:

爱辽❤


tpx035  •  9个月前