789178917891789178917891789178917891789178917891789178917891789178917891789178917891789178917891

liyue  •  1个月前


#include<iostream>
using namespace std;
int main(){
    int n;
    cin >> n;
    while(n!=1){
        if(n%2==0){
            n/=2;
            cout << n << " ";
        }else{
            n=n*3+1;
            cout << n << " ";
        }
    }
}

评论:

请先登录,才能进行评论