This exercise requires designing a program which solves the problem described in the problem statement below. Provide comments in your pseudo-code and Java code as necessary.
Your solution (identification headers) must include these components:
1.Flowchart
2.Pseudo-code
3.Program Coded
4.Program Output
A golf club has a small tournament consisting of five golfers every weekend. The club president has asked you to design a program that does the following:
Your results should be similar to the following:
Enter player Name (Z to terminate): Tiger Woods
Enter score: 72
Enter Player Name (Z to terminate): Rory McElroy
Enter Score: 70
Enter player name (Z to terminate): Dustin Johnson
Enter score: 67
Enter player name (Z to terminate): Patrick Reed
Enter score: 69
Enter player name (Z to terminate): Jim Furyk
Enter score: 71
Enter player name (Z to terminate): Z
Player: Tiger Woods Score: 72
Player: Rory McElroy Score: 70
Player: Dustin Johnson Score: 67
Player: Patrick Reed Score: 69
Player: Jim Furyk Score: 71