私には配列がString[] questions={"adorable", "able", "adventurous"};
あり、すべての形容詞を含む配列 t[] もあります。配列 t[] で愛らしい、有能で冒険的な単語を見つけたいと思います。これまでのところ、この行コードがありますが、機能していないようです。誰かが私を助けてくれますか?
String u = sn.nextLine();
String[] t = u.split(" ");
for (y = 0; y <= question.length; y++) {
for (int w = 0; w < t.length; w++) {
if (t[w].equals(question[y])) {
System.out.print(t[w] + " ");
break;
}
}
}