java code if function code example
Example 1: if statement in java
int x = 3;
if (x<=3){
System.out.println("Hello World");
}
else {
System.out.println("Bye World");
}
Example 2: if statement java
int x = 3;
if (x == 3) {
// block of code to be executed if the condition is true
}
Example 3: java if
if(a<b){
//if a<b you are here
//do something
}else if(a==b){
//if a==b you are here
//do something
}else{
//if none above conditions are matched you are here
//do something
}