The if-statement continues if the input is non-zero.
Single statement conditional
if (booleanvalue) //something one;
else // something two
Multiple statement conditional
if (booleanvalue){
// the if condition
}
else if {
// the other case
}
else {
// the other case
}