在代码的开头,用户确定许多关键字和关键字字符串本身,然后将其放入数组中。假设用户说了3个关键字,它们分别是“音乐”,“运动”和“模因”。毕竟,说用户在程序“我喜欢运动”中输入。我只是希望程序在识别出用户说的是体育运动之后,以“让我们谈论体育”作为回应。
我要引用用户预先确定的字符串,然后将其与消息一起打印
我可以看到使用for循环并遍历每篇文章直到找到匹配项的潜力,直到我找到匹配为止,我还没有对布尔值做很多工作,所以我只需要一些帮助就可以弄清楚代码并从中学习< / p>
这一切都必须在while循环内发生,因此完成后,他们可以使用不同的关键字并获得相同的无聊响应
谢谢
注意:我的程序中实际上还没有想要的任何代码,该代码只是向您展示如何将其适合更大的方案。
import java.util.Scanner;
public class Assignment1 {
public static void main(String[] args) {
String kwArray[];
String UserMessage;
String Target = "";
int numKw = 0;
Scanner input = new Scanner(System.in);
System.out.println("How many keywords do you want?");
numKw = input.nextInt();
kwArray = new String[numKw];
System.out.print(System.lineSeparator());
input.nextLine();
for (int i = 0; i < numKw; i++) {
System.out.println("Enter keyword " + (i + 1) + ": ");
kwArray[i] = input.nextLine();// Read another string
}
for (int i = 0; i < numKw; i++) {
kwArray[i] = kwArray[i].toLowerCase();
}
int x = 0;
while (x == 0) {
System.out.println("Hey I'm a chatbot! Why don't you say something to me!");
System.out.println("These are the keywords you gave me");
for (String i : kwArray) {
System.out.print(i);
System.out.print(", ");
}
System.out.print(System.lineSeparator());
System.out.println("Or you can terminate the program by typing goodbye");
UserMessage = input.nextLine();
// Gives the user opportunity to type in their desired message
UserMessage = UserMessage.toLowerCase();
if (UserMessage.contains("?")) {
System.out.println("I will be asking the questions!");
}
if (UserMessage.contains("goodbye")) {
x = 1;
}
}
input.close();
}
}
答案 0 :(得分:0)
如果我的问题正确,那么您想检查提交的关键字中是否存在某个元素,并希望在进一步处理时引用它。
为此,您可以使用HashSet代替数组来检查O(1)中是否存在任何元素。
更新了代码,但我仍然觉得您的查询与我理解的相同,将您的用例的确切示例放在下面:
Scanner input = new Scanner(System.in);
Set<String> set = new HashSet<String>();
int keywords = input.nextInt();
for (int i=0; i<keywords; i++) {
//add to set set like:
set.add(input.readLine());
}
String userComment = input.readLine();
String[] userCommentWords = userComment.split(" ");
//you can iterate over the words in comment and check it in the set
for (int i=0; i<userCommentWords.length; i++) {
String word = userCommentWords[i];
if (set.contains(word)) {
System.out.println("Let's talk about "+word);
}
}