()
| 6 | |
| 7 | public class WhileTest { |
| 8 | static boolean condition() { |
| 9 | boolean result = Math.random() < 0.99; |
| 10 | System.out.print(result + ", "); |
| 11 | return result; |
| 12 | } |
| 13 | public static void main(String[] args) { |
| 14 | while(condition()) |
| 15 | System.out.println("Inside 'while'"); |