The if/else if statement is a form of what?

Oct 22, 2015 at 6:04pm
Does someone knows what goes into the blank?

The if/else if statement is actually a form of the ________ if statement.

Oct 23, 2015 at 6:46am
Form of condition.

if(condition)
{
statement1;
}
else if(condition)
{
statement2;
}
else
{
statement3;
}

Topic archived. No new replies allowed.