public static void Main()
Console.WriteLine("Enter the size of the array");
int size=Convert.ToInt32(Console.ReadLine());
int[] array1=new int[size];
Console.WriteLine("Enter the value for the array ");
for(int a=0;a<=size-1;a++){
array1[a]=Convert.ToInt32(Console.ReadLine());
foreach(int oddeven in array1){
Console.WriteLine(oddeven+" is even");
Console.WriteLine(oddeven+"Number is odd");