please explain how you would write this code in JAVA I am very confused. 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 main() and two input integers that represent par and the number of strokes used, write a method, golfScore(), that returns the appropriate score name (a String). Return "Error" if par is not 3, 4, or 5. Ex: If the program input is: 4 3 the method golfScore() returns and then the program outputs: Birdie Note: Your program must define the method: public String golfScore(int par, int strokes)
please explain how you would write this code in JAVA I am very confused.
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 main() and two input integers that represent par and the number of strokes used, write a method, golfScore(), that returns the appropriate score name (a String). Return "Error" if par is not 3, 4, or 5.
Ex: If the
4 3
the method golfScore() returns and then the program outputs:
Birdie
Note: Your program must define the method:
public String golfScore(int par, int strokes)
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 1 images