write a program to enter three
Attachments:

Answers
Answered by
0
Answer:
below is the answer
Explanation:
// Java program to find largest
// among two numbers using
// ternary operator
class GFG
{
public static void main(String args[])
{
// variable declaration
int n1 = 5, n2 = 10, max;
// Largest among n1 and n2
max = (n1 > n2) ? n1 : n2;
// Print the largest number
System.out.println("Largest number between " + n1 +
" and " + n2 + " is " + max + ". " );
}
}
Similar questions
Political Science,
2 months ago
Math,
2 months ago
English,
3 months ago
Social Sciences,
3 months ago
Math,
11 months ago
Economy,
11 months ago