Answers for "java if else if"

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
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
11

else statement java

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
}
Posted by: Guest on December-15-2019
11

else statement java

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
}
Posted by: Guest on December-15-2019
0

java if else if ladder

import java.io.*; 
  
class GFG { 
    public static void main(String[] args) 
    { 
        // initializing expression 
        int i = 20; 
  
        // condition 1 
        if (i == 10) 
            System.out.println("i is 10\n"); 
  
        // condition 2 
        else if (i == 15) 
            System.out.println("i is 15\n"); 
  
        // condition 3 
        else if (i == 20) 
            System.out.println("i is 20\n"); 
  
        else
            System.out.println("i is not present\n"); 
  
        System.out.println("Outside if-else-if"); 
    } 
}
Posted by: Guest on August-01-2020
0

java if else if ladder

import java.io.*; 
  
class GFG { 
    public static void main(String[] args) 
    { 
        // initializing expression 
        int i = 20; 
  
        // condition 1 
        if (i == 10) 
            System.out.println("i is 10\n"); 
  
        // condition 2 
        else if (i == 15) 
            System.out.println("i is 15\n"); 
  
        // condition 3 
        else if (i == 20) 
            System.out.println("i is 20\n"); 
  
        else
            System.out.println("i is not present\n"); 
  
        System.out.println("Outside if-else-if"); 
    } 
}
Posted by: Guest on August-01-2020
1

how to make if else statments in java

if (condition) {
  // code block
} else {
  // code block
}
Posted by: Guest on April-15-2021
1

how to make if else statments in java

if (condition) {
  // code block
} else {
  // code block
}
Posted by: Guest on April-15-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language