Multiway if..else... • Syntax for multiway if-else if (condition1){ statements; } else if(condition2){ statements; } else if(condition3){ statemens; } ... ... else{ statements; }