我有一个关于我正在编写的代码的问题的问题。我需要创建一个数独棋盘检查器。目标是通过使用 5 个特定方法来扩展数独类(制作 CheckableSudoku 类),我必须使用 public boolean checkAll() 来检查所有方法,如果它们通过则返回 true。这是我的代码!对不起,如果我解释得太混乱了:/
import java.util.Scanner;
public class CheckableSudoku extends Sudoku
{
public int getCell(int xColumn, int yRow)
{
return this.board[xColumn][yRow];
}
public boolean checkRow (int yCoord)
{
int sum = 0;
for ( int x = 0; x <9; x++)
{
sum = sum + getCell (x,yCoord);
}
return( true );
}
public boolean checkColumn (int xCoord)
{
int sum = 0;
for (int y = 0; y < 9 ;y++)
{
sum = sum + getCell (xCoord, y);
}
return( true );
}
public boolean checkBlock (int col0to2, int row0to2)
{
int sum = 0;
for (int x=0; x<3; x++)
{
for (int y=0; y<3;y++)
{
sum = sum + getCell (col0to2+x, row0to2+y);
}
}
return( true);
}
public boolean checkAll()
{
// this is the method that checks all the other methods above
return true;
}
public static void main(String[] a)
{
CheckableSudoku me = new CheckableSudoku();
Scanner sc = new Scanner(System.in);
me.read(sc);
System.out.print(me);
System.out.println(me.checkAll());
}
}