Java program to find largest of the three numbers using ternary operators


The conditional operator is also known as the ternary operator. This operator consists of three operands and is used to evaluate Boolean expressions. The goal of the operator is to decide, which value should be assigned to the variable. The operator is written as −

variable x = (expression) ? value if true : value if false

Example

Live Demo

public class LargestOf3Nums_TernaryOperator {
   public static void main(String args[]) {
      int a, b, c, temp, result;
      a = 10;
      b = 20;
      c = 30;

      temp = a < b ? a:b;
      result = c < temp ? c:temp;
      System.out.println("Largest number is ::"+result);
   }
}

Output

Largest number is ::30




Updated on: 13-Mar-2020

447 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements