/*
 * Program skeleton for RandomInts.java
 *
 * NOTE: This incomplete fragment will not compile.
 */

import java.util.*;

public class RandomInts
{
    public static void main(String[] args)
    {
	Random rand = new Random();
	int[] n;

	// generate noOfInts random integers in [1..noOfInts]
	for(int i=0; i<noOfInts; i++) {
	    n[i] = (int) (rand.nextFloat() * noOfInts) + 1;
	}
    }
}
