Question: 1 . Create a JavaFX application that simulates a coin being tossed. When the user clicks a button, the application should generate a random number

1. Create a JavaFX application that simulates a coin being tossed. When the user clicks a button, the application should generate a random number in the range of 0 to 1. If the number is 0, the coin has landed on heads, and if the number is 1, the coin has landed on tails. Use an ImageView control, and download the coin images from online browser. (40pts)
Hint: for the random generator import java.util.Random; and create an object rand for the Random class. Then use rand.nextInt(2) method to generate random number.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!