!!!!!!!!!!!!!!!!!!!! 100 POINTS !!!!!!!!!!!!!!!!!!!!!!!!
Does anyone on here know how to draw trace tables? If so, could you please draw one for this algorithm :
Quantity ← 0
Total ← 0
Value ← 0
Small ← 999
WHILE Quantity < 5 DO
INPUT Value
IF Value >= 10 AND Value <= 100 THEN
Quantity ← Quantity + 1
Total ← Total + Value
IF Value < Small THEN
Small ← Value
ENDIF
ENDIF
ENDWHILE
OUTPUT("small = ", Small)
OUTPUT(Total / Quantity)
DISCLAIMER : Please refrain from using AI, as it cannot produce a correct trace table for this algorithm.