public static void Main()
Console.WriteLine("enter no. of elements in an array");
n=int.Parse(Console.ReadLine());
Console.WriteLine("enter {0} element in the Array",i);
a[i]=int.Parse(Console.ReadLine());
Console.WriteLine("there are {0} positive numbers, {1} negative numbers, {2} zeros in the given array",p,ne,z);