Computer Science, asked by zeeshanhaidar1165, 3 months ago

write a program to enter three​

Attachments:

Answers

Answered by elizabeth02
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