Computer Science, asked by supriyamishra23573, 8 months ago

Write a program in java to input a number user(BufferedReader) and print if it is prime number pr not . With VDT table.​

Answers

Answered by khwaiskhhh
3

Answer:

import java.util.*;

class Twisted_Prime

{

public static void main(String[] args)

{

int n, reverse,sum=0 , flag;

Scanner sc = new Scanner(System.in);

System.out.println("Enter the prime number?");

n = sc.nextInt();

while(n!=0)

{

reverse = n%10;

sum = sum*10 + reverse;

n= n/10;

}

flag = 0;

for (int j = 2; j <= sum / 2; j++)

{

if ((sum % j) == 0)

{

flag = 1;

break;

}

}

if (flag == 0)

System.out.println("Twisted Prime");

else

System.out.println("Not Twisted Prime");

}

}

Explanation:

hope it help pls mark as brainliest

Similar questions