用java写大数,感觉就是BUG import java.math.*; import java.io.*; import java.util.*; public class Main{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); BigDecimal f1, f2; int c = Integer.parseInt(sc.next()); int i = 1; while(sc.has…
Problem Description I have a very simple problem for you. Given two integers A and B, your job is to calculate the Sum of A + B. Input The first line of the input contains an integer T(1<=T<=20) which means the number of test cases. Then T lines fol…