import java.util.*; class RandomNumbers { public static void main(String[] args) { int c; Random t = new Random(); // random integers in [0, 100] for (c = 1; c <= 10; c++) { System.out.println(t.nextInt(100)); } } }
Java Program For Random Numbers
January 20, 2015 
Bhanu Namikaze
Bhanu Namikaze is an Penetration Tester, Red Teamer, Ethical Hacker, Blogger, Web Developer and a Mechanical Engineer. He Enjoys writing articles, Blogging, Debugging Errors and CTFs. Enjoy Learning; There is Nothing Like Absolute Defeat - Try and try until you Succeed.

 
 
No comments:
Post a Comment