Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

public class TestRandom {

public static void main(String[] args) {


System.out.println("Here are the numbers genrated randomly upto 500");
Randomizer random = new Randomizer(new java.util.Date().getTime());
for(int i = 0; i < 10; i++)
System.out.println(random.randomInt(500));
}
}

You might also like