JamieB
0
Q:

if else java

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 :(");
		}
3
int x = 3;

if (x == 3) {
  // block of code to be executed if the condition is true
} else {
  // block of code to be executed if the condition is false
}
10
if statement executes a set of statements if condition is true.

Syntax:

if(condition)
{
   // if condition is true;
}
3
int a=10;
if(a>5){
// block of code to be executed if the condition in true
}
else{
// block of code to be excuted if the condition in false
}
4
if(x == 1 && y == 2){
  println("x = 1 and y = 2");
}
3
int x = 3;

if (x<=3){
	System.out.println("Hello World");
}

else {
	System.out.println("Bye World");
}
1
int x = 3;

if (x == 3) {
  // block of code to be executed if the condition is true
}
8
if (condition) {
  // block of code to be executed if the condition is true
}
1
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");
        }
    }
}
0
int Java = 15
int Javascript = 13

if (Java > Javascript) {
  System.out.println("Java is greater than Javascript");
}
3

New to Communities?

Join the community