FileDocCategorySizeDatePackage
RandomInt.javaAPI DocExample455Wed Jun 07 13:22:58 BST 2000None

RandomInt

public class RandomInt extends Object
Generate random ints by asking Random() for a series of random integers from 1 to 10, inclusive.
author
Ian Darwin, ian@darwinsys.com
version
$Id: RandomInt.java,v 1.2 2000/06/07 16:22:58 ian Exp $

Fields Summary
Constructors Summary
Methods Summary
public static voidmain(java.lang.String[] a)

		Random r = new Random();
		for (int i=0; i<1000; i++)
			// nextInt(10) goes from 0-9; add 1 for 1-10;
			System.out.println(1+r.nextInt(10));