gpt4 book ai didi

java - 如何查找一个数字是否在数组中?

转载 作者:行者123 更新时间:2023-11-29 09:48:11 24 4
gpt4 key购买 nike

尝试编写一种方法来告诉我一个数字是否在数组中。到目前为止我有..

    public static boolean inList(double number, double[] list){
for (double i : list)
{
if (i == number){
return false;
}

}
return true; //if its not in the array I want the if statement to run.
}

到目前为止,这对我没有用,出于某种原因,它无法识别数组中是否包含某些数字。

最佳答案

您混淆了 return 语句。应该是这样的:

    public static boolean inList(double number, double[] list){
for (double i : list)
{
if (i == number){
//return true when you've found the match!
return true;
}
}
//return false here because you finished looking at the entire array
//and couldn't find a match.
return false;
}

关于java - 如何查找一个数字是否在数组中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21563040/

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