Computer Science, asked by sreyanair1123, 10 months ago

Write a program that will find out whether the given number is even or odd. If odd number then find out whether it is prime or not.

Answers

Answered by jithinayalloor
0

Answer:

bluej program:

import java.util.*;

class oddprime

{    

       public static void main()

       

       {  

           Scanner sc= new Scanner(System.in);

           System.out.println("enter an integer");

           int n=sc.nextInt(),c=0;

           if (n%2!=0)

           {

               for (int i=1;i<=n;i++)

               {

                   if (n%i==0)

                   {

                       c++;

                   }

               }

           }

           if(c==2)

           System.out.println("The number is odd and prime");

           else

           System.out.println("The number is not prime");

       }

   }

Explanation:

Similar questions