using System; public class Exercise14 { public static void Main() { int n,i,j=0,lrg,lrg2nd; int[] arr1 = new int[50]; Console.Write("\n\nFind the second largest element in an array :\n"); Console.Write("-----------------------------------------\n"); Console.Write("Input the size of array : "); n = Convert.ToInt32(Console.ReadLine()); /* Stored values into the array*/ Console.Write("Input {0} elements in the array :\n",n); for(i=0; i