我在这里有这段代码:
Scanner input = new Scanner(System.in);
int array[] = new int[10];
System.out.println("Enter the numbers now.");
for (int i = 0 ; i < array.length; i++ ) {
if (input.nextInt() == 999){
break;
} else {
array[i] = input.nextInt();
}
}
如果用户在数组中输入 999 但到目前为止还没有运气,我想跳出循环。我尝试使用 break 或 return false 但没有任何效果。有没有人有办法解决吗?非常感谢!