Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
Writing nested if statements can become unwieldy, as you can see from the previous example. Luckily, a special form of the if statement comes to the rescue and enables you to combine the if with the else on the same line. The general format of the if-else if statement is
if Boolean-expression1 then
statement
statement
...
else if Boolean-expression2 then
statement
statement
...