java if and if else code example
Example 1: how to make if else statments in java
if (condition) {
} else {
}
Example 2: 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 3: if else java
public class TestIfElse {
public static void main(String[] args) {
int a = 5, b = 6;
if (a > b) {
System.out.println("a is greater");
} else {
System.out.println("b is greater");
}
}
}