Home > Java > Java Program to find weather a number is prime or not – Q5

Java Program to find weather a number is prime or not – Q5


Q5: Java Program to find weather a number is prime or not

Prime Number is a natural number greater than 1 that has no positive divisors other than 1 and itself.
For example: 2, 3, 5, 7, 11, 13, 19, 23, 29, etc.

class primeornot{
	public static void main(String args[]){
		boolean pr = false;
		int a = Integer.parseInt(args[0]);
		for(int i=2; i<a; i++){
			if(a % i == 0){
				pr = false;
				break;
			}
			else
				pr = true;
		}
		if(pr==true)
			System.out.println(a + " is Prime.");
		else
			System.out.println(a + " is not Prime.");
	}
}

… from College notes (BCA/MCA assignments):


Advertisement
  1. No comments yet.
  1. No trackbacks yet.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.

%d bloggers like this: