(Solved) : Competition Takes Place Development New Functionality Added Nba Daily Stats New Functional Q43964195 . . .
A competition takes place for the development of a new functionality that will be added on the NBA daily stats. This new functionality will show the player with the maximum ratio of points per minute.
Develop a program in C++ that prompts the user to enter data fora number of NBA players and then outputs the player(s) with themaximum ratio of points per minute.
You can store the players entered by the user in an array ofstructs with dynamic array of structs.
Sample prompts:
How many players will you enter? 2
Enter first name: LeBron Enter last name: James Enter points:30.5
Enter minutes: 37.8
Enter first name: Giannis Enter last name: Antetokounmpo Enterpoints: 23.5
Enter minutes: 34.8
The maximum ratio of points per minute is: 0.81
Players with maximum ratio of points per minute: Lebron James
*Must declare constant integer, Assume each data entered by userwon’t contain any spaces, program must stop prompting for furtherinput if the max number of players is reached, Data type for pointsshould be double, have three functions (1. read players’ data intoan array, 2. find max radio of points per minute 3. print names ofplayers with max ratio)
Expert Answer
Answer to A competition takes place for the development of a new functionality that will be added on the NBA daily stats. This ne…
OR