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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Source
|
1997-04-19
|
317 b
|
13 lines
class Test {
public static void main(String[] args) {
int index;
boolean found = false;
for (index = 0; index < 10 && !found; index++) {
if (index > Math.PI) {
System.out.println(index + " is greater than Pi");
found = true;
}
}
}
}