[solved]-Given Data Part B Known 80 Jumpers Write Program Read Data Send Report File Output Consist Q39006191
Using simple and basic c++

data in part (b):

You are given the same data as in part (b) but it is known that there are no more than 80 jumpers. Write a program to read the data and send a report to the file output.but consisting of jumper number and average jump in descending order by average jump (that is, best jumper first). You must store the jumper number and average jump in an appropriate array of struct. Show all declarations. [8] You are in charge of a men’s high jump competition and you have data on each competitor, stored in a file input.xt. Each line of data consists of a jumper’s number (integer), followed by his best 3 jumps (real numbers denoting height in metres). The number of jumpers is unknown but a line containing only terminates the data. Here are some sample data: 5555 1.42 1.46 1.53 4599 1.51 1.56 1.49 3705 1.48 1.49 1.50 Show transcribed image text You are given the same data as in part (b) but it is known that there are no more than 80 jumpers. Write a program to read the data and send a report to the file output.but consisting of jumper number and average jump in descending order by average jump (that is, best jumper first). You must store the jumper number and average jump in an appropriate array of struct. Show all declarations. [8]
You are in charge of a men’s high jump competition and you have data on each competitor, stored in a file input.xt. Each line of data consists of a jumper’s number (integer), followed by his best 3 jumps (real numbers denoting height in metres). The number of jumpers is unknown but a line containing only terminates the data. Here are some sample data: 5555 1.42 1.46 1.53 4599 1.51 1.56 1.49 3705 1.48 1.49 1.50
Expert Answer
Answer to You are given the same data as in part (b) but it is known that there are no more than 80 jumpers. Write a program to re… . . .
OR

