J'ai essayé d'obtenir le dernier caractère d'une chaîne mais rien ne fonctionne à l'exception de charAt(strLength - 1)
. Je dois déclarer une variable statique et convertir mon tableau en une seule. Lone story short ça ne marche pas pour moi pour une raison quelconque:
/**
* Note that Java console applications need to be run through the java runtime
* by running "java -jar JarFile.jar" in the command line.
* Java console applications can not be previewed in the Compilr IDE, only applets can.
*/
public class isPalindrome
{
public static boolean status = true;
static String word;
static int strLength = word.length();
public void setword(String word)
{
isPalindrome.word = word;
}
public String[] getWord()
{
String[] word = new String[] {"Nothign", "super"};
return word;
}
/**
* This is the main entry point for the application
* @return
*/
public static void main(String[] args)
{
if (status == false )
{
System.out.println("You didn't entered a Palindrome");
}
else
{
System.out.println("You entered a Palindrome" + get.word);
}
}
public static void isValidEmpNum(String[] array, String s)
{
if(s.charAt(0) == s.charAt(strLength - 1))
status = true;
else
status = false;
return;
}
}