java中设计一个有返回值的方法,判断数组内是否已存在指定的值
展开全部
public class Demo001 {
public static int IsExistAarry(int[] array, int num)
{
for (int i = 0; i < array.length; i++)
{
if (num == array[i])
{
return i;
}
}
return -1;
}
public static void main(String[] args) {
// 测试
int array[] = {1, 2, 4, 10, 20, 8};
int num = 10;
int result = IsExistAarry(array, num);
if (-1 == result)
{
System.out.println(num + "不存在!");
}
else
{
System.out.println(num +"存在且在数组的位置是" +result);
}
}
}
运行结果:
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询