Pastebin launched a little side project called HostCabi.net, check it out ;-)Don't like ads? PRO users don't see any ads ;-)
Guest

multiRandomNumber2

By: ace on Jan 23rd, 2010  |  syntax: None  |  size: 0.21 KB  |  hits: 20  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. public void printMultiRandom(int howMany)
  2.     {
  3.     int index = 0;
  4.     {
  5.       while(index < howMany)
  6.         {
  7.  
  8.             System.out.println(randomGenerator.nextInt());
  9.             index++;
  10.        }
  11.     }