Write an algorithm to compute the average of three input quizzes. Then display The result.
Start
Declare variable quizz1
Declare variable quizz2
Declare variable quizz3
Declare variable average
Read quizz1 from the user
Read quizz2 from the user
Read quizz3 from the user
Set average=(quizz1 +quizz2 +quizz3)/3.0
Display average
Stop
Comments
Leave a comment