Module 3-Sequencial Structure
Module 3-Sequencial Structure
if(Boolean_expression 1) {
// Executes when the Boolean expression 1 is true
if(Boolean_expression 2) {
// Executes when the Boolean expression 2 is true
}
}
Java Nested if..else Statement Example
public class Main {
public static void main(String[] args) {