Question
a) Write C++ statements for the algorithms in Figure 2Initialize total to zero Initialize counter to zero Input the first mark while the user has
a) Write C++ statements for the algorithms in Figure 2Initialize total to zero Initialize counter to zero Input the first mark while the user has not as yet entered the sentinel add this mark into the running total add one to the mark counter input the next mark (possibly the sentinel) endwhile if the counter is not equal to zero set the average to the total divided by the counter print the average else print 'no marks were entered' endir Figure 2.
b) Write C++ statements for the algorithm in Figure 3. (10 marks) initialize passes to zero initialize failures to zero initialize student to one while student counter is less than or equal to ten input the next exam result if the student passed, ie mark is 60 or more add one to passes else add one to failures endir add one to student counter endwhile print the number of passes print the number of failures if eight or more students passed print "raise tuition" endir Figure 3.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started