我写了这个程序来检查一个句子中的所有回文词,但由于某种原因它只输出句子的前两个回文词。这就是我的尝试:
import java.util.*;
public class palin {
boolean checkPalin(String st){
int l = st.length();
String str ="";
for(int i=l-1;i>=0;i--) {
char ch = st.charAt(i);
str = str + Character.toString(ch);
}
if(str.equalsIgnoreCase(st)==true){
return(true);
}
else {
return(false);
}
}
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
System.out.println("Enter the string");
String st = sc.nextLine();
palin ob = new palin();
StringTokenizer str = new StringTokenizer(st);
System.out.println(str.countTokens());
for(int j=1;j<=str.countTokens();j++){
String st1 = str.nextToken();
boolean b = ob.checkPalin(st1);
if (b==true){
System.out.print(st1);
}
}
}
}
你能帮帮我吗?
答案 0 :(得分:0)
当您从StringTokenizer
中提取标记时,str.countTokens()
正在动态更改,使您的for
循环比预期更早结束。请参阅此处的工作示例: