For this program you need to use Eclipse
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!
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here