public void printMutliRandom(int howMany){ Random rand = new Random(); for(howMany=0; howMany++;){ System.out.println(rand.nextInt()); } }
/** * Print multiple random intergers values using System.out.println. * @param howMany How many random values to print. */ public void printMutliRandom(int howMany){ Random rand = new Random(); for(int i = 0; i < howMany; i++){ System.out.println(rand.nextInt()); } }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)