Write a Java program that identifies and print the third largest number from a given array.
import java.util.Arrays;
public class demo {
public static void main(String[] args) {
int[] arr = {8, 6, 9, 2, 1, 66, 54};
int arrLen = arr.length;
// logic to sort the array in ascending order
for(int i=0; i<arr...
ROSHAN CSE0026
Yes for showcase it was good π Like for teaching purpose