0

ユーザーが入力した値を含む文字列を反復しようとしています。ユーザーが 4 文字のみを入力し、それらすべてが 1 から 4 の間であることを検証したいと考えています。それ以外を入力すると、再度尋ねられます。検証を実行しようとしているコードのセクションを含めました。また、意味をなさない到達不能コード エラーが発生しています。これは、while (true) ループを閉じた後に行われます。

        //Entering by ROWS
    //This is for a 4x4 board size using rows
        if (dataSelection == 1) {
        if (boardSize == 1) {
            int row = 1;
            while (row < 5) 
            {
                String row1Values4x4 = "-1";
                while (true) 
                {
                    Scanner firstRow4x4 = new Scanner(System.in);
                    System.out.println("Please enter four values using commas for row " + row); //this needs to loop
                    row1Values4x4 = firstRow4x4.next();
                    row1Values4x4 = row1Values4x4.replaceAll(" ",""); //this is in case user enters numbers with spaces
                    for (int i = 0; i < row1Values4x4.length(); i++) {
                        char c = row1Values4x4.charAt(i);
                        if (row1Values4x4.length() == 7 && c == 48) //I entered 48 in order to test if it is using ascii value (48 = 0) {
                            break;
                        }
                    }
                } //I think I need to include another break in order to escape the second loop? 
                String strArray[] = row1Values4x4.split(","); //This is where I get an unreachable code error 
                int arraySidesInteger[] = new int[strArray.length];
                for (int i = 0;  i < strArray.length;  i++) {
                    arraySidesInteger[i] = Integer.parseInt(strArray[i]);
                }
                fourArray[row-1] = arraySidesInteger;
                for (int i = 0; i < fourArray.length; i++) {
                    for (int j = 0; j < fourArray.length; j++)
                        System.out.print(fourArray[i][j] + " ");
                    System.out.println();
                }
                row++;
                }

あったら教えてください

4

2 に答える 2