Nested if-else in Java code example
Example 1: java else if statements
System.out.println("How many sattelites does JUPITER have ??");
C = scan.nextInt();
if (C == 79)
{
System.out.println("Congrats ! You got the Third Question Right :)");
points = points + 1;
}
else if (C != 79)
{
System.out.println("Sorry but your answer is wrong :(");
}
Example 2: else statement java
int x = 3;
if (x == 3) {
} else {
}
Example 3: 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 4: nested if statement in java
if(something){
if(somethingElse){
doSomething();
}
}