Mega Code Archive

 
Categories / Java / Language Basics
 

Demonstrates the while loop

//: c03:WhileTest.java //  // From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002 // www.BruceEckel.com. See copyright notice in CopyRight.txt. public class WhileTest {   public static void main(String[] args) {     double r = 0;     while(r < 0.99d) {       r = Math.random();       System.out.println(r);     }   } } ///:~