if in else java code example
Example 1: how to make if else statments in java
if (condition) {
// code block
} else {
// code block
}
Example 2: 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
}