Handout #3 Let ELSE IF become ELSIF Now rewrite the nested if example: get x if (x >= 0) then if (x < 50) then put "F" elsif (x < 60) then put "D" elsif (x < 70) then put "C" elsif (x < 80) then put "B" elsif (x < 100) then put "A" else put "Error: Mark greater than 100" end if else put "Error: Mark less than 0" end if