Hey guyz i'm a newbie in java and I would like to create a program to find all palindrome prime numbers between two integers supplied as input (start and end points are excluded). I've started but now i'm stuck... Can u help me???
import java.util.*;
class Question4{
public static void primeNumber (int limit){
Scanner user = new Scanner (System.in);
int x;
int y;
int div=2;
int count=0;
System.out.println ("Enter the starting point N:");
x = user.nextInt();
System.out.println ("Enter the ending point M:");
y = user.nextInt();
while (count>x && count<y){
for (i=0;i>x;i++)
}
}
}