Calculate The Given Number Is Prime Number Or Not Using Java

  1. // prime or not  
  2.   
  3. import java.io.*;  
  4.   
  5. class ssva30  
  6. {  
  7.     public static void main(String arg[]) throws IOException  
  8.     {  
  9.         int n,i,p=1;  
  10.         BufferedReader inp = new BufferedReader(new InputStreamReader(System.in));  
  11.         System.out.print("\n\t\t\tChecking the Number is prime or Not");  
  12.         System.out.println("\n\t\t~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~");  
  13.         System.out.print("\nEnter the Value of N:  ");  
  14.         n=Integer.parseInt(inp.readLine());  
  15.         for(i=2;i<n;i++)  
  16.         {   
  17.             if(n%i==0)  
  18.             p=0;  
  19.         }  
  20.         if(p==0)  
  21.         System.out.print("\nThis is not Prime Number\n");  
  22.         else  
  23.         System.out.print("\nThis is Prime Number\n");  
  24.     }