gpt4 book ai didi

java - (修正)如何显示输入与数组的匹配?

转载 作者:行者123 更新时间:2023-12-01 16:36:30 26 4
gpt4 key购买 nike

有人可以告诉我这段代码的错误吗?我的问题是,如果输入在数组中,则显示“找到”,如果输入不在数组中,则显示“未找到”。为什么我输入的内容只能显示“找到”?

String [] deptName = {"Accounting", "Human Resources","Sales"};

//input
String key = JOptionPane.showInputDialog("Enter a department: ");

for(int i=0; i<deptName.length; i++)
{
if(deptName [i] == key);
}
System.out.println("Found");

编辑:

我的代码是这样修改的,怎么才能不让它显示3次呢?

String [] deptName = {"Accounting", "Human Resources","Sales"};

//input
String key = JOptionPane.showInputDialog("Enter a department: ");

for(int i=0; i<deptName.length; i++)
{
if(deptName [i].equals(key))
JOptionPane.showMessageDialog(null, "Found");
else
JOptionPane.showMessageDialog(null, "Not Found");
}

最佳答案

“found”总是被打印,因为它不在 for 循环中。而你的支票(也有问题)实际上什么也没做

尝试

    your For loop {
if(deptName [i].equals( key)){
System.out.println("Found");
break;
}
}

关于java - (修正)如何显示输入与数组的匹配?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8429277/

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