Java If-Else Statement Guide

100% found this document useful (1 vote)
458 views5 pages
The document discusses different types of if statements in Java including: 1) if statement - executes code if a condition is true 2) if-else statement - executes one code block if condition …

Uploaded by

fathihanirif
  • Java If-else Statement
  • Java IF Statement
  • Java IF-else Statement
  • Java IF-else-if ladder Statement

Java If-else Statement

The Java if statement is used to test the condition. It checks boolean


condition: true or false. There are various types of if statement in java.

o if statement

o if-else statement

o nested if statement

o if-else-if ladder

Java IF Statement
The Java if statement tests the condition. It executes the if block if condition is true.

Syntax:

1. if(condition){
2. //code to be executed
3. }
Example:

1. public class IfExample {


2. public static void main(String[] args) {
3. int age=20;
4. if(age>18){
5. [Link]("Age is greater than 18");
6. }
7. }
8. }

Output:

Age is greater than 18

Java IF-else Statement


The Java if-else statement also tests the condition. It executes the if block if condition is
true otherwise else block is executed.

Syntax:

1. if(condition){
2. //code if condition is true
3. }else{
4. //code if condition is false
5. }
Example:

1. public class IfElseExample {


2. public static void main(String[] args) {
3. int number=13;
4. if(number%2==0){
5. [Link]("even number");
6. }else{
7. [Link]("odd number");
8. }
9. }
10. }

Output:

odd number

Java IF-else-if ladder Statement


The if-else-if ladder statement executes one condition from multiple statements.

Syntax:

1. if(condition1){
2. //code to be executed if condition1 is true
3. }else if(condition2){
4. //code to be executed if condition2 is true
5. }
6. else if(condition3){
7. //code to be executed if condition3 is true
8. }
9. ...
10. else{
11. //code to be executed if all the conditions are false
12. }
Example:

1. public class IfElseIfExample {


2. public static void main(String[] args) {
3. int marks=65;
4.
5. if(marks<50){
6. [Link]("fail");
7. }
8. else if(marks>=50 && marks<60){
9. [Link]("D grade");
10. }
11. else if(marks>=60 && marks<70){
12. [Link]("C grade");
13. }
14. else if(marks>=70 && marks<80){
15. [Link]("B grade");
16. }
17. else if(marks>=80 && marks<90){
18. [Link]("A grade");
19. }else if(marks>=90 && marks<100){
20. [Link]("A+ grade");
21. }else{
22. [Link]("Invalid!");
23. }
24. }
25. }

Output:

C grade

Java If-else Statement 
The 
Java if 
statement is 
used 
to 
test 
the 
condition. 
It 
checks 
boolean 
condition: true or
Example: 
1. public class IfExample {   
2. public static void main(String[] args) {   
3.     int age=20;   
4.     if(age>1
Example: 
1. public class IfElseExample {   
2. public static void main(String[] args) {   
3.     int number=13;   
4.     i
Example: 
1. public class IfElseIfExample {   
2. public static void main(String[] args) {   
3.     int marks=65;   
4.
16.     }   
17.     else if(marks>=80 && marks<90){   
18.         System.out.println("A grade");   
19.     }else if(marks>

You might also like