Answers for "if else in java"

1

java if ? operator

if(condition){
	// block of code to be executed if the condition is true
} else {
	// block of code to be executed if the condition is false
}
Posted by: Guest on January-05-2021
7

else if java

else if statement is used to specify new condition if first condition is false.
Syntax:

if(condition1)
{
   // execute if condition1 is true
}
else if (condition2)
{
   // execute if condition2 is true
}
else if (condition3)
{
   // execute if condition3 is true
}
else
{
   // execute if conditions 1, 2 and 3 becomes false
}
Posted by: Guest on October-23-2020
6

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 :(");
		}
Posted by: Guest on October-23-2020
5

if else in java

import java.io.*;
public class JavaIfElse
{
   public static void main(String[] args)
   {
      int number = 15;
      // check if number is divisible by 2
      if(number%2 == 0)
      {
         System.out.println(number + " is even number");
      }
      else
      {
         System.out.println(number + " is odd number");
      }
   }
}
Posted by: Guest on January-15-2021
3

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
}
Posted by: Guest on June-01-2020
3

if and in java

if(x == 1 && y == 2){
  println("x = 1 and y = 2");
}
Posted by: Guest on December-23-2019

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language