私は初心者のJavaクラスにいて、これに苦労しています。私の教授は私たちにこの疑似コードを与えました - 文字列 sInput を作成します
//
// prompt for input
//
// create char array (cArray) and assign sInput.toCharArray()
//
// loop to check for palindrome (set i = 0, j = sInput.length()-1, check to see if i != j; increment i, decrement j)
// check to see if current array values are !=
// print not a palindrome
// return
// end of loop
私は機知に富んでいます。ご提案ありがとうございます。
私は持っている
public static void main(String[] args) {
while (true) {
display(check(retrieveInput()));
}
}
public static String retrieveInput() {
Scanner scan = new Scanner(System.in);
return scan.next();
}
public static boolean check(String input) {
boolean check = false;
try {
Integer.parseInt(input);
if (input.charAt(0)==input.charAt(4) && input.charAt(1)==input.charAt(3))
check = true;
} catch(Exception e) {
check = false;
}
return check;
}
public static void display(boolean check) {
if(check) System.out.println("Is a five-digit palindrome.");
else System.out.println("Is not a five-digit palindrome.");