xxx定律:
#include<iostream> using namespace std; int main(){ int n; while(cin>>n&&n){ int count=0; while(n!=1){ if(n%2==0) n/=2; else n=(3*n+1)/2; ++count; } cout<<count<<endl; } return 0; }
xxx定律:
#include<iostream> using namespace std; int main(){ int n; while(cin>>n&&n){ int count=0; while(n!=1){ if(n%2==0) n/=2; else n=(3*n+1)/2; ++count; } cout<<count<<endl; } return 0; }
上一篇:杭电 hdu 2031
下一篇:杭电 hdu 2500
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M