How to print random numbers using forEach in Java

1 Answer

0 votes
package javaapplication1;

import java.util.Random;

public class JavaApplication1 {

    public static void main(String[] args) {

        Random random = new Random();
        random.ints().limit(15).forEach(System.out::println); 
    }
}


/*
run:

663504079
561818852
-1627563301
633332386
-1574030906
606289403
640032136
1461405293
1293550555
574125104
-582973947
835825080
-482004061
-1095440658
-1305456836

*/

 



answered Sep 5, 2016 by avibootz

Related questions

2 answers 224 views
224 views asked Sep 29, 2019 by avibootz
1 answer 204 views
2 answers 219 views
2 answers 250 views
1 answer 225 views
2 answers 257 views
...