the task is to ask the user for three numbers and find the average. which pseudocode gives you the comment…

the task is to ask the user for three numbers and find the average. which pseudocode gives you the comment outline for the task? # ask the user for three numbers # divide by 3 # print the average ask the user for three numbers add the numbers divide by 3 print the average # ask the user for three numbers # add the numbers # divide by 3 # print the average ask the user for three numbers divide by 3 print the average
Answer
Brief Explanations:
To find the average of three numbers, first input the numbers, then sum them, and finally divide the sum by 3. The comment outline should describe each step in the process. The correct option has comments for each key - step of asking for numbers, adding them, dividing by 3, and printing the average.
Answer:
C. # ask the user for three numbers