Faith


私信TA

用户名:1310510120

访问量:42372

签 名:

求介绍工作

等  级
排  名 217
经  验 6352
参赛次数 1
文章发表 54
年  龄 0
在职情况 学生
学  校 武汉生物工程学院
专  业

  自我简介:

解题思路:





注意事项:

1.注意n*3可能int型不够用,用long

2.输入的时候可能a比b大,所以要换位置代入函数。





参考代码:

import java.util.Scanner;

public class problem3n1 {

	public static void main(String[] args) {
		Scanner in=new Scanner(System.in);
		while(in.hasNext()){
		long a=in.nextInt();
		long b=in.nextInt();
		long c;
		if(a>b) c=sort(b,a);
		else  c=sort(a,b);
		System.out.println(a+" "+b+" "+c);
		}
	}

	private static long sort(long a, long b) {
		int max=0;
		for(long i=a;i<=b;i++){
			int count=1;
			long num=i;
			while(num!=1)			
			{
				if(num%2==1)
				{
				num=num*3+1;count++;
				}
				else {num=num/2;count++;}
			}
			if(count>max)max=count;
		}
		return max;
	
	}
}


 

0.0分

0 人评分

  评论区

  • «
  • »