Computer Science for IGCSE & O level - Programming (Section 11 - No. 27)
In the Totaling example, how is the variable 'TotalWeight' updated?
TotalWeight = Weight
TotalWeight = TotalWeight - Weight
TotalWeight = TotalWeight + Weight
TotalWeight = Weight - TotalWeight
Explanation
TotalWeight accumulates the sum with each iteration.
Comments (0)
