home *** CD-ROM | disk | FTP | other *** search
/ Java Certification Exam Guide / McGrawwHill-JavaCertificationExamGuide.iso / pc / Web Links and Code / ans / chap7 / exer0701 / InCheck.java
Encoding:
Text File  |  1997-04-20  |  226 b   |  10 lines

  1. boolean[] inCheck = new inCheck[8];
  2. rows: for (int row = 0; row < 8; row++) {
  3.    for (int col = 0; col < 8; col++) {
  4.       if (inCheck(row, col)) {
  5.          inCheck[row] = true;
  6.          continue rows;
  7.       }
  8.    }
  9. }
  10.