Write a program called Heads Or Tails, 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....


Write a program called Heads Or Tails, that lets the user guess whether the flip of a coin results in heads or tails. The program randomly<br>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<br>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 Heads Or Tails, 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) 55 Invalid input! Enter guess of0 or 1 (0: heads, 1: tails) The coin is 1(tails) - Better luck next time Enter guess of 0 or 1 (0: heads, 1: tails) 1 You guessed it !

Jun 04, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here