Java to determine a number of digits and whether it is palindrome number

Java to determine a number of digits and whether it is palindrome number

public class Test25
{
public static void main(String[] args){
System.out.print (please enter a five digit number:);
java.util.Scanner input = new java.util.Scanner ( System.in );
String shu= input.next ();
if( shu.length ()==5)
{
if(( shu.charAt (0)== shu.charAt (4))&&( shu.charAt (1)== shu.charAt (2)))
System.out.println (Shu + "is palindrome number");
else
System.out.println (Shu + "not palindrome number");
}It's not easy
else
System.out.println "You have not entered five digits!";
}It's not easy
}It's not easy