在代码开始时,用户确定许多关键字和关键字字符串本身,并将其放入数组中。假设用户说 3 个关键字,它们是"音乐"、"体育"和"模因"。完成所有这些之后,说用户在程序中输入"我喜欢运动"。我只是希望程序在识别出用户所说的运动在用户本质上创建的数组中以"让我们谈谈体育"来响应。
我想引用用户预先确定的字符串,然后将其与消息一起打印
我可以看到使用 for 循环并浏览每篇文章直到找到匹配项的潜力,我还没有对布尔值做太多工作,所以我只需要一些帮助来打出代码然后从中学习
这一切都必须在 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();
}
}
如果我答对了,您要检查提交的关键字中是否存在元素,并希望在进一步处理时将其引用回来。
为此,您可以使用 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);
}
}