Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In java : Complete the template provided to toss the coin 100 times and count the number of heads and the number of tails. public

In java : Complete the template provided to toss the coin 100 times and count the number of heads and the number of tails.

public class Lab3Num1 {

public static void main(String[] args) { Coin c= new Coin(); //complete this program by adding code to flip the coin 100 times //counting the number of heads and the number of tails //SHOW ME your solution. IT WILL NOT be accurate according to zybooks //because of the randomness System.out.println("The number of heads is " + count + " and the number of tails is " + (100-count)); } }

public class Coin { private int face; //heads is 0, tails is 1 // constructor sets up coin by flipping it initially public Coin() { //constructor flips the coin to determine whether // the face is heads or tails flip(); } public void flip() { //returns 0 or 1 face=(int) (Math.random()*2); } public boolean isHead() { return (face==0); } public String toString() { //this method allows us to print the value of a coin if (face==0)return "Heads"; else return "Tails"; } }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Moving Objects Databases

Authors: Ralf Hartmut Güting, Markus Schneider

1st Edition

0120887991, 978-0120887996

More Books

Students also viewed these Databases questions

Question

What is quality of work life ?

Answered: 1 week ago

Question

What is meant by Career Planning and development ?

Answered: 1 week ago

Question

What are Fringe Benefits ? List out some.

Answered: 1 week ago

Question

What are the organizations reputation goals on this issue?

Answered: 1 week ago

Question

What change do you need to make to achieve the desired position?

Answered: 1 week ago