JAVA experts help...please - Sajha Mobile
SAJHA MOBILE
JAVA experts help...please
Posts 4 · Viewed 4066 · 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 17 · Viewed 2589
· Posts 1 · Viewed 78
· Posts 1 · Viewed 56
· Posts 1 · Viewed 65
· Posts 4 · Viewed 896
· Posts 3 · Viewed 289
· Posts 20 · Viewed 3144 · Likes 1
· Posts 36 · Viewed 4263 · Likes 9
· Posts 2 · Viewed 231
· Posts 105 · Viewed 24833 · Likes 26



Travel Partners
Travel House Nepal