Pseudocode(G) Write pseudocode instructions to find the average of an unknown number of grades entered by the user. The user must enter at least one grade. You will need to prompt the user for the number of grades. If an invalid number of grades is entered, provide the proper output message, and allow them to retry until a correct input number is provided. Include an if/then/else primitive to validate each of the grades entered, to ensure they are each in the range of 0 to 100. If a grade is not within this range, provide the user with an error message stating such, and return them to the input prompt using a loop. The final output should be the resulting average of the number(s), along with the correct corresponding letter grade. Letter grades shall be in a 10 point scale, as follows: 90-100 = A 80-89 = B 70-79 = C 60-69 = D < 60 = F Write pseudocode instructions to find the average of an unknown number of grades entered by the user. The user must enter at least one grade. You will need to prompt the user for the number of grades. If an invalid number of grades is entered, provide the proper output message, and allow them to retry until a correct input number is provided. Include an if/then/else primitive to validate each of the grades entered, to ensure they are each in the range of 0 to 100. If a grade is not within this range, provide the user with an error message stating such, and return them to the input prompt using a loop. The final output should be the resulting average of the number(s), along with the correct corresponding letter grade. Letter grades shall be in a 10 point scale, as follows: 90-100 = A 80-89 = B 70-79 = C 60-69 = D < 60 = F
Pseudocode(G)
Write pseudocode instructions to find the average of an unknown number of grades entered by the user. The user must enter at least one grade. You will need to prompt the user for the number of grades. If an invalid number of grades is entered, provide the proper output message, and allow them to retry until a correct input number is provided. Include an if/then/else primitive to validate each of the grades entered, to ensure they are each in the range of 0 to 100. If a grade is not within this range, provide the user with an error message stating such, and return them to the input prompt using a loop. The final output should be the resulting average of the number(s), along with the correct corresponding letter grade. Letter grades shall be in a 10 point scale, as follows:
90-100 = A
80-89 = B
70-79 = C
60-69 = D
< 60 = F
Write pseudocode instructions to find the average of an unknown number of grades entered by the user. The user must enter at least one grade. You will need to prompt the user for the number of grades. If an invalid number of grades is entered, provide the proper output message, and allow them to retry until a correct input number is provided. Include an if/then/else primitive to validate each of the grades entered, to ensure they are each in the range of 0 to 100. If a grade is not within this range, provide the user with an error message stating such, and return them to the input prompt using a loop. The final output should be the resulting average of the number(s), along with the correct corresponding letter grade. Letter grades shall be in a 10 point scale, as follows:
90-100 = A
80-89 = B
70-79 = C
60-69 = D
< 60 = F
Trending now
This is a popular solution!
Step by step
Solved in 2 steps