- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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
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
- Related Articles
- Java program to find smallest of the three numbers using ternary operators
- Java Program to Find the Largest Among Three Numbers
- Program to find largest of three numbers - JavaScript
- Program to find the Largest Number using Ternary Operator in C++
- Java program to Largest number among three numbers
- Swift Program to Find the Largest Among Three Numbers
- Haskell program to find the largest among three numbers
- Kotlin Program to Find the Largest Among Three Numbers
- C program to Find the Largest Number Among Three Numbers
- How to Find the Largest Among Three Numbers using Python?
- C++ Program to Find Largest Number Among Three Numbers
- How to Find the Largest Among Three Numbers in the Golang program?
- Java program to find maximum of three numbers
- What are the ternary operators in Java?
- Python program to find the maximum of three numbers

Advertisements