Write a program called HeadsOrTails, that lets the user guess whether the flip of a coin results in heads or tails. The program randomly generates an integer 0 or 1, which represents head or tail. The...


For this program you need to use Eclipse



Write a program called HeadsOrTails, that lets the user guess whether the flip of a coin<br>results in heads or tails. The program randomly generates an integer 0 or 1, which<br>represents head or tail. The program prompts the user to enter a guess and reports whether<br>the guess is correct or incorrect.<br>1) Create a Scanner<br>2) Declare a variable called coin to be a random number of 0 and 1<br>3) Ask the user to enter a guess of 0 or 1 (0: heads, 1: tails)<br>4) If the guess is equal to the coin, print a Message,

Extracted text: Write a program called HeadsOrTails, that lets the user guess whether the flip of a coin results in heads or tails. The program randomly generates an integer 0 or 1, which represents head or tail. The program prompts the user to enter a guess and reports whether the guess is correct or incorrect. 1) Create a Scanner 2) Declare a variable called coin to be a random number of 0 and 1 3) Ask the user to enter a guess of 0 or 1 (0: heads, 1: tails) 4) If the guess is equal to the coin, print a Message, "You guessed it!" 5) Otherwise, print the result and the message, "Better luck next time" Sample Runs: Enter guess of 0 or 1 (0: heads, 1: tails) Invalid input! Enter guess of 0 or 1 (0: heads, 1: tails) 0 The coin is 1 (tailis) - Better luck next time Enter guess of 0 or 1 (0: heads, 1: tails) You guessed it!

Jun 01, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here