Random Number Generator

Within a specified lower bounds and upperbounds, generate specified percentage of Random Numbers.

For eg.,Generate 20% of random numbers out of (0 to 99). i.e., I should get 20 numbers randomly and UNIQUELY from 0 to 99 numbers.

Thanks in Advance

Anup

[305 byte] By [anup_sunsysa] at [2007-10-2 12:14:58]
# 1
Go away.Drake
Drake_Duna at 2007-7-13 8:59:59 > top of Java-index,Other Topics,Algorithms...
# 2

> Within a specified lower bounds and upperbounds, generate specified percentage of Random Numbers.

>

> For eg.,Generate 20% of random numbers out of (0 to 99). i.e., I should get 20

> numbers randomly and UNIQUELY from 0 to 99 numbers.

What part of this are you having problems with?

tschodta at 2007-7-13 8:59:59 > top of Java-index,Other Topics,Algorithms...
# 3
Construct a range, then pull 20 random numbers out of it.~Cheers
Adeodatusa at 2007-7-13 8:59:59 > top of Java-index,Other Topics,Algorithms...