Java program to find smallest 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 SmallestOf3NumsUsingTernary {
   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("Smallest number is ::"+result);
   }
}

Output

Smallest number is ::10

Lakshmi Srinivas
Lakshmi Srinivas

Programmer / Analyst / Technician

Updated on: 13-Mar-2020

655 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements