home *** CD-ROM | disk | FTP | other *** search
/ Java Certification Exam Guide / McGrawwHill-JavaCertificationExamGuide.iso / pc / Web Links and Code / ans / chap5 / exer0503 / Test.java
Encoding:
Java Source  |  1997-04-19  |  317 b   |  13 lines

  1. class Test {
  2.    public static void main(String[] args) {
  3.       int index;
  4.       boolean found = false;
  5.       for (index = 0; index < 10 && !found; index++) {
  6.          if (index > Math.PI) {
  7.             System.out.println(index + " is greater than Pi");
  8.             found = true;
  9.          }
  10.       }
  11.    }
  12. }
  13.