如果在数组中找到值,我不知道如何返回索引,如果没有找到,如何返回 -1。我试过这个,但它不起作用。有人可以帮助我吗?提前致谢!
import java.util.Scanner;
public class NM {
public static void main(String[] args) {
int[] arraynm = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
Scanner sc = new Scanner(System.in);
System.out.print("Enter a number: ");
int num = sc.nextInt();
boolean match = false;
for (int i = 0; i < arraynm.length; i++) {
if (num == arraynm[i]) {
match = true;
return index;
break;
}
}
if(!match) {
return -1;
}
}
慕后森
慕容708150
相关分类