Java Program to Check a Number is Prime or Not
In this example, we are giving a program to check whether a number is prime or not.
To check a number is prime or not:
# To check a number is prime or notpublic class Prime {public static void main(String[] args) {int num = 13;boolean flag = false;for(int i = 2; i <= num/2; ++i) {if (num % i == 0) {flag = true;break;}}if (!flag)System.out.println(num + " is a prime number.");elseSystem.out.println(num + " is not a prime number.");}}
Output:
13 is a prime number.