SOLUTION: Solve/write an algorithm to find the average score on 5 quizzes and determine if the average is less than 60

Algebra ->  Average -> SOLUTION: Solve/write an algorithm to find the average score on 5 quizzes and determine if the average is less than 60      Log On


   



Question 587705: Solve/write an algorithm to find the average score on 5 quizzes and determine if the average is less than 60
Answer by Theo(13342) About Me  (Show Source):
You can put this solution on YOUR website!
the formula for the average would be:
average = sum(x1 though x5) / 5
x1 = first score
x2 = second score
x3 = third score
etc.
once you find the average, you then look at it and see whether it's greater than or equal to or less than 60.