gpt4 book ai didi

java - 递归回文

转载 作者:行者123 更新时间:2023-11-29 03:37:23 25 4
gpt4 key购买 nike

首先,我并不是要告诉任何人“做我的功课”。我只需要一些关于如何不断重复一个过程的帮助。这是我在下面做的程序,它有一个测试类。

类(class):

class RecursivePalindrome {
public static boolean isPal(String s)
{
if(s.length() == 0 || s.length() == 1)
return true;
if(s.charAt(0) == s.charAt(s.length()-1))
return isPal(s.substring(1, s.length()-1));
return false;
}
}

然后是具有主要方法的测试类:

public class RecursivePalindromeTester {   
public static void main(String[] args)
{
RecursivePalindrome Pal = new RecursivePalindrome ();

boolean quit = true;
Scanner in = new Scanner(System.in);
System.out.print("Enter a word to test whether it is a palindrome or not(press quit to end.): ");
String x = in.nextLine();
while(quit) {
boolean itsPal = Pal.isPal(x);
if(itsPal == true){
System.out.println(x + " is a palindrome.");
quit = false;
}
else if (x.equals("quit")) {
quit = false;
}
else {
quit = false;
System.out.println(x + " is not a palindrome.");
}
}
}
}

这个程序判断字母是否为回文。我得到了所有的计算和东西,但我该怎么做才能不断询问用户输入,每次用户输入时它都会说它是否是回文词。

最佳答案

只需移动要求用户输入并阅读的行:

System.out.print("Enter a word to test whether it is a palindrome or not(press quit to end.): ");
String x = in.nextLine();

...进入你的循环,例如,就在

之后
while (quit) {

...行。


旁注:quit 似乎是一个 boolean 值的奇怪名称,当 true 时,意味着您继续。 :-)

关于java - 递归回文,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14799784/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com