using System; public class Exercise10 { public static void Main() { int[] arr1 = new int[10]; int[] arr2 = new int[10]; int[] arr3 = new int[10]; int i,j=0,k=0,n; Console.Write("\n\nSeparate odd and even integers in separate arrays:\n"); Console.Write("------------------------------------------------------\n"); Console.Write("Input the number of elements to be stored in the array :"); n = Convert.ToInt32(Console.ReadLine()); Console.Write("Input {0} elements in the array :\n",n); for(i=0; i