#41009:


sry30c@gmail.com (H C)

學校 : 不指定學校
編號 : 271030
來源 : [61.230.139.162]
最後登入時間 :
2024-07-18 21:29:01
c039. 00100 - The 3n + 1 problem -- UVa100 | From: [49.217.194.244] | 發表日期 : 2024-06-24 12:41

怎麼改啊
#include<iostream>
using namespace std;
int main()
{
int n,times=0;
cin>>n;
while(n!=1)
if(n%2==1) 
n=3*n+1;
times+=1;
if(n%2==0) 
n/=2;
times+=1;
cout<<times;
 
ZeroJudge Forum