JAVA experts help...please - Sajha Mobile
SAJHA MOBILE
JAVA experts help...please
Posts 4 · Viewed 7570 · 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 7 · Viewed 1136
· Posts 3 · Viewed 146
· Posts 2 · Viewed 665
· Posts 1 · Viewed 131
· Posts 1 · Viewed 134
· Posts 1 · Viewed 234
· Posts 5 · Viewed 1433
· Posts 4 · Viewed 11262
· Posts 2 · Viewed 786
· Posts 1 · Viewed 217



Travel Partners
Travel House Nepal