gpt4 book ai didi

java - 如何处理 Java 中一维数组的跳过输入

转载 作者:行者123 更新时间:2023-12-02 10:22:47 26 4
gpt4 key购买 nike

在此程序中,该用户将有机会生成自己的单词搜索。在程序开始时,用户将看到一个说明菜单,他们可以在其中选择以下选项:1. 创建单词搜索2. 打印单词搜索3.查看单词搜索的解决方案4.退出程序

当选择创建单词搜索时,系统将要求用户逐行输入他们选择的单词。这些字将存储在一个一维数组中。用户必须输入最少 20 个单词,最多 260 个单词。每批 20 个单词,系统都会询问用户是否要添加更多单词。如果不这样做,程序将直接跳转到将一维数组转换为数组列表,然后创建单词搜索。如果用户选择添加更多单词,程序将提示他/她输入更多单词,直到达到最大单词数。选项 2 和 3 只涉及一些循环并使用一些方法向用户显示有组织的输出。

该程序不允许我将单词输入到单词数组中。运行程序时,用户输入“1”创建单词搜索,然后程序指示用户逐行输入单词,但不让用户输入任何内容。控制台屏幕显示“已创建单词搜索”,在其下方显示“输入无效,请重试”。我在引入程序后立即创建了数组列表:List<String> words = new ArrayList<>();

我试图找出我哪里出了问题,我什至尝试对此进行搜索,但没有任何东西真正解决我的问题。

do {		
WordArray wordArr = new WordArray();
showOptions();
choice = input.nextInt(); // Get choice input
if (choice == 1) {
System.out.println("Enter words of your choice line-by-line. You can enter a maximum of 260 words (i.e., 10 words per letter)");
System.out.println("");
// This for loop will loop around with it`s body the user decides they have added enough words and wish to proceed
for (int i = 0; i < words.size(); i++) {
words.add(input.nextLine());
if ((i + 1) % 20 == 0 && i != 0) {
// For every batch of 20 words entered, the program will ask the user this...
System.out.print("Do you want to keep adding words? Enter Y/N: ");
String answer = input.next().toUpperCase();
if (answer.equals("Y")) {
words.add(input.nextLine());
} if (answer.equals("N")) {
break;
}//end of inner if
}//end of outer if
}//end of for loop
createWordSearch(words);

最佳答案

来自 this chat 的讨论,错误出现在for循环中

for (int i = 0; i < words.size(); i++)

words.size() 为 0,因此要解决这个问题,您应该使用

for (int i = 0; i <= 260; i++)

words.size() 更改为 260,其中 260 是用户可以输入的最大字数。

关于java - 如何处理 Java 中一维数组的跳过输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54205157/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com