码迷,mamicode.com
首页 > 其他好文 > 详细

计算次数,POJ(1207)

时间:2016-03-21 23:04:47      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:

题目链接:http://poj.org/problem?id=1207

#include <stdio.h>
#include <algorithm>

using namespace std;

int i,j;
int Max;

int fun(int k)
{
    int Count=1;
    while(k!=1)
    {
        if(k%2==1)
            k=k*3+1;
        else k/=2;
        Count++;
    }
    return Count;
}

int main()
{
    while(scanf("%d%d",&i,&j)!=EOF)
    {
        int ti=i;
        int tj=j;
        Max=-1;
        if(ti>tj)
            swap(ti,tj);
        for(int k=ti; k<=tj; k++)
        {
            if(Max<fun(k))
            {
                Max=fun(k);
            }
        }
        printf("%d %d %d\n",i,j,Max);
    }
    return 0;
}

 

计算次数,POJ(1207)

标签:

原文地址:http://www.cnblogs.com/TreeDream/p/5304124.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!