How do if else ifs work 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: 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");
}
}
}