This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Beginning Java and the fly likes random numbers gen Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "random numbers gen" Watch "random numbers gen" New topic
Author

random numbers gen

j srinivas
Greenhorn

Joined: Apr 08, 2008
Posts: 16
well iam unable to create random numbers betn 1-100,without repetetion.
iam declaring an array to store all random numbers.
then generate an array number and compare it with array elements
but it is not getting done
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35241
    
    7
Is there a particular reason you're not using java.util.Random.nextInt ? It's not easy to program a good RNG on your own.


Android appsImageJ pluginsJava web charts
Alberto Caraz
Greenhorn

Joined: Apr 27, 2007
Posts: 18
By without repetition you mean you want to randomly permute a sequence of numbers and then show them one by one? If that's the case I would recommend creating a list of numbers from 1 to n and then calling Collections.shuffle on it. Then your "ith" random number will be the "ith" element of this sequence.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: random numbers gen
 
Similar Threads
coding problem
Creating Multiple Objects?
Generating Random Number
need help with array
Creating random Unique values