First we'll replace the elegant If/Then/Else
structure by a combination
of If
and Goto
which correspond more closely to the available
machine instructions.
TOTAL = SCORE1 + SCORE2 IF(TOTAL.LE.50) THEN GRADE = 'F' ELSE GRADE = 'P' END IF STOP | → |
TOTAL = SCORE1 + SCORE2 IF(TOTAL.GT.50) GOTO PASS GRADE = 'F' GOTO END PASS: GRADE = 'P' END: STOP |
Slide show generated from sw.html by Weasel 2007 Mar 15