While Loops LabWrite a program that does the following:Include the following:1.Initialize the counter to either zero or one before the while loop begins.2.Use a counter controlled while loop that uses the number of grades entered by the User as the m
While Loops LabWrite a program that does the following:Include the following:1.Initialize the counter to either zero or one before the while loop begins.2.Use a counter controlled while loop that uses the number of grades entered by the User as the maximum number of loops executed.a. If you initialized your counter to zero you will want the loop to continue as long as your counter is less than the number of grades.b. If you initialized your counter to one you will want the loop to continue as long as your counter is less than or equal to the number of grades.3.Within the body of the loop:a.Prompts the User for the next grade.b.Compute a running total of these grades as they are entered.4.After the While Loop is done executing compute the average of all the grades entered. Remember to check to make sure you dont perform a division by zero.