Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public static void main(String[] args) {
- findFactors(BigInteger.valueOf(600851475143));
- }
- public static BigInteger findFactors(long input){
- //BigInteger findFactors(BigInteger input){ doesnt work either
- BigInteger wow = BigInteger.valueOf(input);
- return wow;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement