Question
Java program Create a coin toss simulation program. The simulation program should toss coin randomly and track the count of heads or tails. You need
Java program
Create a coin toss simulation program. The simulation program should toss coin randomly and track the count of heads or tails.
You need to write a program that can perform following operations:
a. Toss a coin randomly.
b. Track the count of heads or tails.
c. Display the results.
Design and Test
Let's decide what classes, methods and variables will be required in this task and their significance:
Write a class called Coin.
The Coin class should have an Instance variable sideUp. The sideUp field will hold either "heads" or "tails" indicating the side of the coin that is facing up.
The Coin class should have following methods:
A void method named toss, which simulates the tossing of a coin. When the toss method is called, it randomly determines the side of the coin that is facing up ("heads" or "tails") and sets the sideUp field accordingly.
A no-arg constructor, which randomly determines the side of the coin, that is facing up ("heads" or "tails") and initializes the sideUp field accordingly.
A method named getSideUp that returns the value of the sideUp field.
Create a toss method that uses loop to toss the coin 20 times. Each time the coin is tossed, display the side that is facing up. The method should keep count of the number of times heads or tails is facing up and display those values after the loop finishes.
Write the test program, which has main method and demonstrates the Coin class.
create a java class diagram
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started