If, else

What more is there to say?

if (condition) {
    // ...
}
else if (other_condition) {
    // ...
}
else {
    // ...
}