gpt4 book ai didi

java - 从用户输入字符串返回数组中的索引

转载 作者:行者123 更新时间:2023-12-01 13:10:55 24 4
gpt4 key购买 nike

我正在尝试在 Java 中实现一种简单的 Hangman 情况,其中初始化字符数组,接受用户输入,并返回字符串输入中字母出现的所有索引。到目前为止,我的输出非常奇怪,我认为这是由于我的初学者在循环和某些位置方面的失礼造成的。如果您对此问题有见解,请告诉我:

public class ArrayRandomString {
public static void main(String[] args) {

// Create an array of characters:
Character[] anArray = { 'P', 'A', 'P', 'A', 'B', 'E', 'A', 'R' };
for (char ch : anArray)
System.out.print(ch + " ");
System.out.println();

System.out.println("This program initializes a secret word or phrase to be guessed by you!");
System.out.println("Enter a string of less than 5 characters to return all indexes where it occurs in scrambled string: ");
Scanner input = new Scanner(System.in);
String string = input.next();

System.out.println(string);
System.out.println(Character.toUpperCase(string.charAt(0)));

List<Integer> myList = new ArrayList<Integer>();
List<Integer> noList = new ArrayList<Integer>();
int i;
int j;
// Loop to find index of inputted character
for (i = 0; i < anArray.length; i++) {
Character ch = new Character(anArray[i]);
for (j = 0; j < string.length(); j++) {
List<Integer> letterList = new ArrayList<Integer>();
if (Character.toUpperCase(string.charAt(j)) == ch) {
letterList.add(j);
}
System.out.println(Character.toUpperCase(string.charAt(j)) + " occurs at the following index " + letterList);
}
}
// System.out.println("Your letter occurs at the following index in the scrambled array. No occurence, if empty: " + myList);
}
}

如果用户输入是“PEAR”,理想输出:

P occurs at [0, 2]
E occurs at [5]
A occurs at [1, 3, 6]
R occurs at [7]

如果用户输入是“TEA”,理想输出:

T does not occur in string
E occurs at [5]
A occurs at [1, 3, 6]

到目前为止,我还没有为“不发生”编写代码,因为“确实发生”已经很奇怪了。提前致谢

最佳答案

您的内部循环和外部循环混合在一起,并且有时使用错误的索引(i 或 j)和错误的数组/字符串。它有助于为 ij 提供更具描述性的名称,以便您知道何时使用哪个。最后,您只能在尝试查找所有出现的情况后打印“occurrs”字符串,否则您将为每个出现的情况打印一整行,而不是为所有出现的字符打印一行。

这修复了你的循环:

for (int stringIndex = 0; stringIndex < string.length(); stringIndex++) {
char ch = Character.toUpperCase(string.charAt(stringIndex));
List<Integer> letterList = new ArrayList<Integer>();
for (int anArrayIndex = 0; anArrayIndex < anArray.length; anArrayIndex++) {
if (anArray[anArrayIndex] == ch) {
letterList.add(anArrayIndex);
}
}
System.out.println(ch + " occurs at the following index " + letterList);
}

我将把它作为练习,测试 letterList 是否为空(提示:查看 Javadoc 的方法 isEmpty())并打印不同的消息表明您没有发现任何事件。

关于java - 从用户输入字符串返回数组中的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22876030/

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