Java If Else Condition Example


Java if statement is used to check condition whether it is true or false. If the condition is true then it will run inner code, if it is false then nothing will be run.

Program
public class Ifcondition{ public static void main(String args[]){ int x=5; if(x<6){ System.out.println("x is smaller than 6"); } if(x<3){ System.out.println("x is smaller than 3"); } }}
Input
Output

Similar Program

# Program Language
1 Java
2 Java
3 Java
4 Java
5 Java
6 Java
7 Java
8 Java
9 Java
10 Java
11 Java
12 Java
13 Java
14 Java
15 Java
16 Java
17 Java
18 Java
19 Java
20 Java
# Program Language