using System; public class Exercise7 { public static void Main() { int[] arr1 = new int[100]; int[] arr2 = new int[100]; int[] arr3 = new int[200]; int s1, s2, s3; int i, j, k; Console.Write("\n\nMerge two arrays of same size sorted in ascending order.\n"); Console.Write("------------------------------------------------------------\n"); Console.Write("Input the number of elements to be stored in the first array :"); s1 = Convert.ToInt32(Console.ReadLine()); Console.Write("Input {0} elements in the array :\n",s1); for(i=0; i=arr3[k+1]) { j=arr3[k+1]; arr3[k+1]=arr3[k]; arr3[k]=j; } } } /*--------------- Prints the merged array ------------------------------------*/ Console.Write("\nThe merged array in ascending order is :\n"); for(i=0; i