Answered step by step
Verified Expert Solution
Question
1 Approved Answer
I tried many different ways and even asked my teacher and nothing. Has to be in Java and learning about && and ==. 3.20 LAB:
I tried many different ways and even asked my teacher and nothing. Has to be in Java and learning about && and ==.
3.20 LAB: Golf scores names Instructor note: In the assignments it says: "Print "Error" if par is not 3,4 , or 5 ". You need to check this condition first, before the other conditions. For example, if par is 6 and strokes is 4 and you check "Eagle" condition first, you will get "Eagle" while it should be "Error". Golf scores record the number of strokes used to get the ball in the hole. The expected number of strokes varies from hole to hole and is called par (i.e. 3, 4, or 5). Each score's name is based on the actual strokes taken compared to par: - "Eagle": number of strokes is two less than par - "Birdie": number of strokes is one less than par - "Par": number of strokes equals par - "Bogey": number of strokes is one more than par Given two integers that represent par and the number of strokes used, write a program (Golf.java) that prints the appropriate score name. Print "Error" if par is not 3,4 , or 5 . Example 1: If the input is: 43 the output is (or ends with): Birdie Example 2: If the input is: 64 the output is (or ends with): The name of the file should be Golf.java . It should contain class Golf with the main methodStep 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