郑州轻工业大学oj题解1099: 角谷猜想(多实例测试)

2020-02-09  本文已影响0人  缘点点

有点事忙,没来得及日更~晚了

1099: 角谷猜想(多实例测试)

#include<bits/stdc++.h>
using namespace std;
 
int main()
{
    int n,m,i;
    while((scanf("%d",&n))!=EOF){
        i=0;
        while(n!=1){
            if(n%2==0){
                n=n/2;i++;
            }
            else
            {
                n=n*3+1;i++;
            }
        }printf("%d\n",i);
    }   
    return 0;
}
上一篇 下一篇

猜你喜欢

热点阅读