Advertisement
Guest User

Untitled

a guest
Nov 5th, 2016
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. public static void main(String[] args) {
  2. findFactors(BigInteger.valueOf(600851475143));
  3. }
  4.  
  5. public static BigInteger findFactors(long input){
  6. //BigInteger findFactors(BigInteger input){ doesnt work either
  7. BigInteger wow = BigInteger.valueOf(input);
  8. return wow;
  9.  
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement