Primality Test Solution

Problem

Alice and Bob are meeting after a long time. As usual they love to play some math games. This times Alice takes the call and decides the game. The game is very simple, Alice says out an integer and Bob has to say whether the number is prime or not. Bob as usual knows the logic but since Alice doesn't give Bob much time to think, so Bob decides to write a computer program.

Help Bob accomplish this task by writing a computer program which will calculate whether the number is prime or not .

Input

The first line of the input contains an integer T, the number of testcases. T lines follow.

Each of the next T lines contains an integer N which has to be tested for primality.

Output

For each test case output in a separate line, "yes" if the number is prime else "no."

Constraints

  •  T  20
  •  N  100000

Sample 1:

Input
Output
5
23
13
20
1000
99991
yes
yes
no
no
yes




Program :

 import java.util.Scanner;

public class Main 

{

    public static void main(String[] args)  

    {

        Scanner sc = new Scanner(System.in);

        int t = sc.nextInt();

        while(t-- > 0) 

        {

            boolean prime = true;

            int n = sc.nextInt();

            if(n == 1)

            {

                System.out.println("no");

                continue;

            }

            if(n == 2)

            {

                System.out.println("yes");

                continue;

            }

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

            {

                if(n%i == 0) 

                {

                    System.out.println("no");

                    prime = false;

                    break;

                }

            }

            if(prime == true) 

            {

                System.out.println("yes");

            }

        }

        sc.close();

    }

}

Post a Comment

0 Comments