到目前为止,这是我的代码。我被卡住了,我不知道该怎么办。谢谢您的帮助!
public static boolean checkWord(String a, String b){
int x = 0;
while (x < a.length()){
int y = 0;
while (y < b.length()){
if(a.charAt(x)==b.charAt(y)){
String t = "next";
System.out.println(t);
y++;
}else{
}
}
x++;
}
return false;
}