1 条题解

  • 1
    @ 2023-8-29 13:30:15
    #include<bits/stdc++.h>
    using namespace std;
    int n;
    int main(){
        cin>>n;
        while(n!=1){//n不为1
            if(n%2!=0){//奇数
                cout<<n<<"*3+1="<<n*3+1<<endl;
                n=n*3+1;
            }
            else{//偶数
                cout<<n<<"/2="<<n/2<<endl;
                n=n/2;
            }
        }
        cout<<"End";//结尾输出End
        return 0;
    }
    
    • 1

    信息

    ID
    87
    时间
    1000ms
    内存
    128MiB
    难度
    9
    标签
    (无)
    递交数
    8
    已通过
    6
    上传者