Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Java Big numbers #183

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions PrimeBigNumber.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import java.io.*;
import java.math.*;
import java.security.*;
import java.text.*;
import java.util.*;
import java.util.concurrent.*;
import java.util.*;

public class PrimeBigNumber {



private static final Scanner scanner = new Scanner(System.in);

public static void main(String[] args)
{
String n = scanner.nextLine();
BigInteger bn=new BigInteger(n);
if(bn.isProbablePrime(1))
{
System.out.println("prime");
}
else
{
System.out.println("not prime");
}
scanner.close();
}

}
21 changes: 21 additions & 0 deletions javaBigInteger.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;

public class javaBigInteger {

public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
BigInteger b1=new BigInteger(sc.next());
BigInteger b2=new BigInteger(sc.next());

BigInteger b3,b4;
b3=b1.add(b2);
b4=b1.multiply(b2);

System.out.println(b3);
System.out.println(b4);
}
}