给定区间[-2的31次方, 2的31次方]内的3个整数A、B和C,请判断A+B是否大于C。

这篇博客讨论了如何在Java中检查给定区间[-2^31, 2^31)内的三个整数A、B和C,当A加上B时,判断结果是否大于C。文章可能涉及整数溢出问题和位运算的解决方案。" 130956129,18784123,Qt中的QAbstractItemView自动滚动与边缘滚动,"['Qt开发', 'GUI编程', 'Python', 'C++']
摘要由CSDN通过智能技术生成

public class test {
	public static void main(String[] args) {
		int T;//输入第1行给出正整数T,是测试用例的个数。
		String a,b,c;
		
		Scanner sc=new Scanner(System.in);

		T = sc.nextInt();
		String arr[][] = new String[T][3];

		for (int i = 0; i < T; i++) {
			a = sc.next();//要存入大整数必须要用字符串来存入
			b = sc.next();
			c = sc.next();
			
			
			arr[i][0] = a;//将接收的字符串存到数组
			arr[i][1] = b;
			arr[i][2] = c;
		}

		for (int i = 0; i < T; i++) {

			BigInteger A = new BigInteger(arr[i][0]);//将数组中的数转为BigInteger型
			BigInteger B = new BigInteger(arr[i][1]);
			BigInteger C = new BigInteger(arr[i][2]);
			int result = (A.add(B)).compareTo(C);//BigInteger的比较运算结果,返回的是-1,0,1

			System.out.println("Case #" + (i + 1) + ": " + Compare(result));

		}

	}

	public static boolean Compare(int result) {//将返回的三个数转换成boolean型
		if (result == 1) {
			return true;
		}else {
			return false;
		}
	}
}

运行结果:

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值