if statement in Java code example
Example 1: how to make if else statments in java
if (condition) {
} else {
}
Example 2: else statement java
int x = 3;
if (x == 3) {
} else {
}
Example 3: if statement in java
int x = 3;
if (x<=3){
System.out.println("Hello World");
}
else {
System.out.println("Bye World");
}
Example 4: if and in java
if(x == 1 && y == 2){
println("x = 1 and y = 2");
}
Example 5: else if java
else if statement is used to specify new condition if first condition is false.
Syntax:
if(condition1)
{
}
else if (condition2)
{
}
else if (condition3)
{
}
else
{
}
Example 6: if else in java
import java.io.*;
public class JavaIfElse
{
public static void main(String[] args)
{
int number = 15;
if(number%2 == 0)
{
System.out.println(number + " is even number");
}
else
{
System.out.println(number + " is odd number");
}
}
}