Bugs N Errors

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

Resetting...

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

Resetting...

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

Resetting...

-- SWITCH CASE COMING SOON --