Java if else condition example 2


Java if-else statement is used to check condition whether it is true or false. If the first condition is false then it will finally run the else condition.

Program
public class Ifelsecondition{ public static void main(String args[]){ int x=5; if(x>6){ System.out.println("x is greater than 6"); } else{ System.out.println("x is smaller than 6"); } }}
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