本文主要是介绍SDUT PTA JAVA12 常用类(日期、数学、封装类、随机数等)习题,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
7-1 sdut-常用类-骄傲的代价 (10 分)
import java.math.BigInteger;
import java.util.Arrays;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
long t=sc.nextLong();
for(int i=0;i<t;i++) {
BigInteger a=sc.nextBigInteger();
BigInteger b=sc.nextBigInteger();
System.out.println(a+"+"+b+"="+a.add(b));
System.out.println(a+"-"+b+"="+a.subtract(b));
System.out.println(a+"*"+b+"="+a.multiply(b));
System.out.println(a+"/"+b+"="+a.divide(b));
System.out.println(a+"%"+b+"="+a.mod(b));
}
sc.close();
}
}
这篇关于SDUT PTA JAVA12 常用类(日期、数学、封装类、随机数等)习题的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!