View Single Post
  #15 (permalink)  
Old 08-31-2008, 09:46 PM
Supamagier Supamagier is offline
Senior Member
 
Join Date: Aug 2008
Posts: 186
Supamagier is on a distinguished road
About the random numbers, I would use a loop to generate them. :\
Code:
int[] rands = new int[amount] Random rand = new Random(); for (int i = 0; i < amount; ++i) { rands[i] = rand.nextInt(45); }
Oh, and for God's sake, use [ code] [ /code] tags
__________________
check out
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
, 100% made by me.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Reply With Quote