University stuff.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213
  1. import java.io.File;
  2. class Sudoku {
  3. public static void main(String[] args) throws Exception {
  4. if (args.length < 1) {
  5. System.out.println("Usage: java Sudoku <file>");
  6. return;
  7. }
  8. Brett b = new Brett(new File(args[0]));
  9. b.print();
  10. }
  11. }