Guest User

Untitled

a guest
Nov 18th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. public void testBigIntegerStrings(){
  2. BigInteger b1 = new BigInteger("1234567890123456789123456789");
  3. BigInteger b2 = new BigInteger("1234567890123456789123456789");
  4.  
  5. addL(b1,b2);
  6. }
  7.  
  8. private String addL(BigInteger b1, BigInteger b2) {
  9. return b1.add(b2).toString();
  10. }
Add Comment
Please, Sign In to add comment