using System; public class Exercise11 { public static void Main() { int[] arr1 = new int[10]; int n, i, j, tmp; Console.Write("\n\nSort elements of array in ascending order :\n"); Console.Write("----------------------------------------------\n"); Console.Write("Input the size of array : "); n = Convert.ToInt32(Console.ReadLine()); Console.Write("Input {0} elements in the array :\n",n); for(i=0; i