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

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