Bugs N Errors

DEVELOPMENT & TESTING PHASE

IF CONDITION

Animation: click START button or END button

Scenario: if score >=80 print PASS

flowchart_if
code_if

PASS

70

80

90

score>=80

IF ELSE CONDITION

Animation: click START button or END button

Scenario: if score >=80 print PASS, else print FAIL

flowchart_ifelse
code_ifelse

70

80

90

score>=80

IF ELSEIF ELSE CONDITION

Animation: click START button or END button

Scenario: if score >=90 print PASS, else if score >=80 print POOR, else print FAIL

flowchart_ifelseifelse
code_ifelseifelse

70

80

90

score>=90