Answer:
It can look like this:
if ( TRUE ) {
// Execute these statements if TRUE
}
else {
// Execute these statements if FALSE
}
if ( TRUE ) {
// Execute these statements if TRUE
}
else {
// Execute these statements if FALSE
}
Previous Question | Next Question |
What is basic if statement syntax? | What is Else If Syntax? |