我不能在其中输入高于9的值

时间:2019-02-25 08:30:20

标签: java arrays multidimensional-array indexoutofboundsexception

我认为当我输入小于9的值时,这是完美的。但是,当我输入大于9的值时,程序将抛出ArrayIndexOutOfBoundsException。我不知道是什么引起了这个问题。有人可以简单地向我解释这个问题,对此有什么解决方案?

import java.util.Scanner;
public class Main{
public static void main(String[] args) {
    int[][] twoDAarray = new int[3][3];

    Scanner input = new Scanner(System.in);
    System.out.println("Enter values: ");
    for(int i=0; i<3; i++){
        for(int j=0; j<3; j++){
            twoDAarray[i][j] = input.nextInt();
        }
    }

    System.out.println(checkLoShuSquare( twoDAarray ));
}

public static boolean checkLoShuSquare( int[][] twoDAarray ) {
    boolean[] isUnique = new boolean[twoDAarray.length*twoDAarray[0].length+1];
    for ( int i = 0; i < twoDAarray.length; i++ ) {
       for ( int j = 0; j < twoDAarray[0].length; j++ ) {
         if ( isUnique[twoDAarray[i][j]] ){
            return false;
         }
         isUnique[twoDAarray[i][j]] = true;
       }
    }

    int[] lessThan9 = new int[twoDAarray.length*twoDAarray[0].length+1];
    for ( int i = 0; i < twoDAarray.length; i++ ) {
        for ( int j = 0; j < twoDAarray[0].length; j++ ) {
            if (lessThan9[twoDAarray[i][j]] <= 9){
                return true;
            }
    }
  }
    return true;
 }
}

1 个答案:

答案 0 :(得分:2)

isUnique数组的大小为10,而应该由用户插入的最大整数来调整大小。

当然,有更好的方法来检查任意大小的重复数字,例如使用Set<Integer>