Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
39526 张予馨 角谷猜想 C++ 通过 1 MS 256 KB 287 2024-02-01 21:34:36

Tests(1/1):


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


测评信息: