我怎么这么菜


私信TA

用户名:xujingcheng

访问量:18146

签 名:

Break Away

等  级
排  名 712
经  验 3889
参赛次数 4
文章发表 44
年  龄 10
在职情况 学生
学  校 NUAA
专  业

  自我简介:

毕业前学一下编程, 嗯! 是这样。

#include<stdio.h>
#include"math.h"
int main()
{
    long i,j,k,temp;
    int count,max;
    while(scanf("%ld%ld",&i,&j)!=EOF)
    {
       max=0;
       if(i>0&&i<pow(10,6)&&j>0&&j<pow(10,6))
       {
          for(k=i;k<=j;k++)
          {
              temp=k;
              count=1;
              if(temp>1)
              {
              while(temp!=1)
              {
               if(temp%2==0) {temp/=2;count++;}
               if(temp%2==1) {temp=temp*3+1;count++;}
              }
              count++;
              }
              if(count>max) max=count;
          }
          printf("%ld %ld %d\n",i,j,max);
        }
     }
    return 0;
}
 

0.0分

0 人评分

  评论区

  • «
  • »