i was wondering can if statements be written like this (in pseudo-code) :
IF condition is met
do this
IF condition is met
do this
IF condition is met
do this
.
.
.
or do they have to be written like this:
IF condition is met
Thank you!
IF condition is met
do this
IF condition is met
do this
IF condition is met
do this
.
.
.
or do they have to be written like this:
IF condition is met
do this
ELSEIF condition is met
Do this
ELSE
IF condition is met
Do this
Thank you!