I am working on an assignment for my computer science course and in this assignment we have to generate random coupons with a value of between $1000 and $5000. I have most of it done but our teacher wants us to use .nextGaussian to make it more likely to give out a $1000 coupon than a $5000 coupon. Any suggestion as to how I would go about this? I have looked up .nextGaussian but I can't seem to get it to work. Any suggestions or help would be greatly appreciated. We are using Bluej(java is the programming language) as the environment if that is important.
|
feedback
|
|
99% of the results of nextGaussian will be between -3 and 3. So you probably want to
You will have a lot of results between 0 and 1000, not sure how to handle those. Probably ignore them and go again? Hopefully this will get you started. Note that some results will be >5000, definitely ignore those and go again. EDIT ADDED About a minute after I answered last night, realized a slightly better way.
| ||||
|
feedback
|