これまでの私のコードは次のとおりです。行き詰まり、どうすればよいかわかりません。助けてくれてありがとう!
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;
}