A sports competition has 25 players who each take part in five different events.
The array PlayerName[] stores the names of the 25 players.
A two-dimensional array PlayerScore[][] stores their scores, where:
the first index represents the player
the second index represents the event
Each event is scored from 0 to 100.
A separate one-dimensional array TotalPoints[] is used to store the total score for each player across all five events.
Medals are given to the player or players who:
achieve the highest score in each individual event
achieve the highest overall total score across all five events
accepts and stores valid scores for every player in every event
finds the highest score in each event
displays the name(s) of the player(s) who earned a medal for each event
calculates the highest total score across all events
displays the name(s) of the player(s) who earned a medal for total score
You must include comments to explain how your code works.
You do not need to declare arrays or variables.
All input and output must include clear messages.
Please create a python and pseudocode version of this program