0
已解决
夏义博
初级守护
初级守护
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a,s=0;
cin>>a;
while(a!=1)
{
if(a%2==0)
{
a=a/2;
s++;
}
if(a%2==1)
{
a=a*3+1;
s++;
}
}
cout<<s;
return 0;
}
为什么输出不了
夏义博在2019-01-21 20:48:45追加了内容
不知道为什么
夏义博在2019-01-22 12:13:13追加了内容
等待程老师来解答
他在和我聊qq的时候给我找到了错
死循环