Mệnh Đề If-Else Trong Java

Mệnh đề if-else trong java

Mệnh đề if trong java được sử dụng để kiểm tra giá trị dạng boolean của điều kiện. Mệnh đề này trả về giá trị True hoặc False .

1. Mệnh đề if

Mệnh đề if được sử dụng để kiểm tra giá trị dạng boolean của điều kiện. Khối lệnh sau if được thực thi nếu giá trị của điều kiện là True

Cú pháp:

				
					if(condition){  
//code to be executed  
}

				
			
				
					public class IfStatementExample {
    public static void main(String[] args) {
        int x, y;
        x = 10;
        y = 20;
        if (x < y) {
            System.out.println("x is less than y");
        }
        x = x * 2;
        if (x == y) {
            System.out.println("x now equal to y");
        }
        x = x * 2;
        if (x > y) {
            System.out.println("x now greater than y");
        }
        // this won't display anything
        if (x == y)
            System.out.println("you won't see this");
    }
}
				
			

Output:

x is less than y
x now equal to y
x now greater than y

2. Mệnh đề nested If

Khi mà bạn thấy một mệnh đề if nằm trong một mệnh đề if khác thì nó được gọi là nested if

Cú pháp

				
					if(condition_1) {
   Statement1(s);

   if(condition_2) {
      Statement2(s);
   }
}
				
			
				
					public class NetstedIfStatementExample {
    public static void main(String[] args) {
        int num = 50;
        if (num < 100) {
            System.out.println("number is less than 100");
            if (num == 50) {
                System.out.println("number equal to 50");
                if (num > 40) {
                    System.out.println("number is greater than 40");
                }
            }
        }
    }
}
				
			

Output:

number is less than 100
number equal to 50
number is greater than 40

3. Mệnh đề if-else

Mệnh đề if-else cũng kiểm tra giá trị dạng boolean của điều kiện. Nếu giá trị điều kiện là True thì chỉ có khối lệnh sau if sẽ được thực hiện, nếu là False thì chỉ có khối lệnh sau else được thực hiện.

Cú pháp

				
					if(condition){  
     statement 1; //code if condition is true  
}else{  
     statement 2; //code if condition is false  
}
				
			
				
					public class IfElseDemo {
    public static void main(String[] args) {

        int testscore = 76;
        char grade;

        if (testscore >= 90) {
            grade = 'A';
        } else if (testscore >= 80) {
            grade = 'B';
        } else if (testscore >= 70) {
            grade = 'C';
        } else if (testscore >= 60) {
            grade = 'D';
        } else {
            grade = 'F';
        }
        System.out.println("Grade = " + grade);
    }
}
				
			

Output:

Grade = C

4. Mệnh đề if-else-if

Mệnh đề if-else-if cũng kiểm tra giá trị dạng boolean của điều kiện. Nếu giá trị điều kiện if là True thì chỉ có khối lệnh sau if sẽ được thực hiện. Nếu giá trị điều kiện if else nào là True thì chỉ có khối lệnh sau else if đó sẽ được thực hiện… Nếu tất cả điều kiện của if và else if là False thì chỉ có khối lệnh sau else sẽ được thực hiện.

Cú pháp

				
					if(condition1){  
//code to be executed if condition1 is true  
}else if(condition2){  
//code to be executed if condition2 is true  
}  
else if(condition3){  
//code to be executed if condition3 is true  
}  
...  
else{  
//code to be executed if all the conditions are false  
}  
				
			
				
					public class IfElseIfStatementExample {
    public static void main(String args[]) {
        int month = 4; // April
        String season;
        if (month == 12 || month == 1 || month == 2)
            season = "Winter";
        else if (month == 3 || month == 4 || month == 5)
            season = "Spring";
        else if (month == 6 || month == 7 || month == 8)
            season = "Summer";
        else if (month == 9 || month == 10 || month == 11)
            season = "Autumn";
        else
            season = "Bogus Month";
        System.out.println("April is in the " + season + ".");
    }
}
				
			

Output:

April is in the Spring.