+2 votes
in Class 12 by kratos

Write the syntax of if-else-if statement and the flowchart representation of if-else-if conditional structure.

1 Answer

+2 votes
by kratos
 
Best answer

if(expression)

{

statements

}

else if(expression)

{

statements

}

else if(expression)

{

statements

}

...