Create a NOTEPAD or PDF file that restates the problem in your own words, specif
ID: 3668327 • Letter: C
Question
Create a NOTEPAD or PDF file that restates the problem in your own words, specifies what input is needed from whomever is using the process, what output is expected, the step by step process (algorithm) to get the output from the input, and test data (input for which you know the expected output for each of the 3 problems given below. You should not write any actual C++ code. Make sure the problem statement is in your own words and is descriptive enough so someone not reading the problem given to you will understand what is being done. (See the document containing example algorithms posted on ANGEL). Attach your file to the appropriate drop box on ANGEL. All the problems involve repeating steps so you can write something like Step 1: Get exam from student Check that student properly filled in name and section before he/she leaves Put exam in pile corresponding to section until all exams are collected Put rubber bands on the exams for each section Put exams in box (you do not have to number the steps) Develop a process that will allow you enter names of gymnasts and their scores, then determine the maximum and the gymnast who earned it. Do not use concepts such as sorting or arrays.Explanation / Answer
Step 1: Get the name and score of each gymnast and write it as a list.
Step 2: Write the name of the first gymnast and his/her score on a separate sheet, assuming it to be highest.
Step 3: Go through the list one by one, if you find a score higher than the current maximum score, just replace the score and name of the gymnast.
Step 4: As you reach the end of the list, you will have the maximum score and the gymnast who earned it on the other sheet.