JAVA experts help...please - Sajha Mobile
SAJHA MOBILE
JAVA experts help...please
Posts 4 · Viewed 6307 · Go to Last Post
जय नेपाल
· Snapshot
Like · Likedby · 0
i need help with a code to find a random number between 1 to 70000 and use that number to convert to dollar and pennies amount.
result would be like this.  "You have $ 50.34".
im done with the random number generator but can't figure out how to combine two parts..
bange
· Snapshot
Like · Liked by · 0
int rand  = generateRandomNumbers(70000);
System.out.println("You have $ 50.34");

So simple...

Can you make the question clear?
sauravcn
· Snapshot
Like · Liked by · 0

import java.util.Random;
public class number{
public static void main(String [] args){
Random random =
new Random();
double number = random.nextInt(70000);
System.out.println (
"You have $" + number);
}

Last edited: 16-Feb-10 04:12 PM
Gajedi
· Snapshot
Like · Liked by · 0
Just changed saurvcn's code a little bit. 


import java.util.Random;
import java.text.DecimalFormat;
public class Randomnumber{
public static void main(String [] args){
Random random = new Random();
double number = random.nextInt(70000);
DecimalFormat df = new DecimalFormat("$ 0.00");
System.out.println ("You have " + df.format(number));
}
}

Use java random number generator wisely as it is not a reliable (in terms of cycle) random number generator.

Please log in to reply to this post

You can also log in using your Facebook
View in Desktop
What people are reading
You might like these other discussions...
· Posts 5 · Viewed 5116
· Posts 1 · Viewed 160
· Posts 1 · Viewed 373
· Posts 5 · Viewed 5173
· Posts 10 · Viewed 2218
· Posts 7 · Viewed 1918
· Posts 1 · Viewed 749
· Posts 7 · Viewed 1727
· Posts 2 · Viewed 927
· Posts 1 · Viewed 359



Travel Partners
Travel House Nepal