深渊一击,极限反杀中二

魈凯KBS  •  5个月前


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;

}


评论: