Go Back   CodingForums.com > :: Server side development > Java and JSP

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 09-13-2012, 05:19 PM   PM User | #1
NDF
New to the CF scene

 
Join Date: Oct 2011
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
NDF is an unknown quantity at this point
Generate a random number?

I'm trying to generate a random number in Java.

I need one number to be between 5.00-20.00 (going by intervals of 5.01, 5.02, 5.03, etc)
I also need the same thing between 1.00-5.00.

How would I go about doing this?
NDF is offline   Reply With Quote
Old 09-13-2012, 08:30 PM   PM User | #2
Fou-Lu
God Emperor


 
Fou-Lu's Avatar
 
Join Date: Sep 2002
Location: Saskatoon, Saskatchewan
Posts: 15,635
Thanks: 4
Thanked 2,448 Times in 2,417 Posts
Fou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to all
I don't believe there is an existing built in class to find random between two specific numbers.
One can be easily written though, by basing off of the min and max provided.
PHP Code:
public static double randBetween(double dMindouble dMax)
{
    
// either extend Random and call to this, or make random.  I'll make random here
    
Random r = new Random();
    return 
dMin + (r.nextDouble() * (dMax dMin));

Done and done.

To format to two decimal places, you may use the printf:
PHP Code:
System.out.printf("%.2f\n"randBetween(5.020)); 
Or mathematically calculate it by cast, multiply and divide:
PHP Code:
double d randBetween(520);
= ((double)(int)(100)) / 100
Fou-Lu is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 11:42 AM.


Advertisement
Log in to turn off these ads.