Help please! (simple "random()" problem)

N

Newbie

Why does this consistently code return exactly the same 'random' number?

Seems so simple I feel like a total idiot for not understanding what I'm
doing wrong

Thankyou for your assistance!

=========================================
public void Randomize()
{
for (int i=0; i < userEntry; i++)
{
int value = 0;
Random rand = new Random();
value = rand.nextInt( 999 );
}
System.out.println(value);
}

=========================================
 
C

Christophe Vanfleteren

Newbie said:
Why does this consistently code return exactly the same 'random' number?

Seems so simple I feel like a total idiot for not understanding what I'm
doing wrong

Thankyou for your assistance!

=========================================
public void Randomize()
{
for (int i=0; i < userEntry; i++)
{
int value = 0;
Random rand = new Random();
value = rand.nextInt( 999 );
}
System.out.println(value);
}

=========================================

Read http://mindprod.com/jgloss/gotchas.html#RANDOM to get an explanation
for why this is happening.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,055
Latest member
SlimSparkKetoACVReview

Latest Threads

Top