/** * Write a description of class TestRandom here. * * @author Devin Gray * @version February 22nd, 2016 */ public class TestRandom { public static void main(String [] args) { System.out.println("Lets generate some numbers!!"); double k = Math.random(); System.out.println("k = " + k); k = Math.random(); System.out.println("k = " + k); k = Math.random(); System.out.println("k = " + k); k = Math.random(); System.out.println("k = " + k); k = Math.random(); System.out.println("k = " + k); k = Math.random(); System.out.println("k = " + k); } public static void rollLotsADice(int diceCount) { for(int i=0; i