fork download
  1. import java.util.stream.*;
  2.  
  3. class Ideone {
  4. public static void main (String[] args) {
  5. long count = IntStream.generate(() -> (int)(Math.random() * 20 + 1)).takeWhile(i -> i != 11).count();
  6. System.out.println(count);
  7. }
  8. }
Success #stdin #stdout 0.07s 34176KB
stdin
Standard input is empty
stdout
0