0
已采纳
包涵宇
中级天翼
中级天翼
童晨睿 你好!!!
首先定义几个数:
int a,p=0;
int s=0,b=0,c=0,d=0,e=0;
然后输入a:
cin>>a;
接下来是while循环:
while(1){
if(a==1)
break;
if(a%2==0)
a=a/2;
else
a=a*3+1;
s++;
}
最后输出s:
cout<<s;
加上框架,ac愉快!!!
望采纳!!!
0
0
0
0