#include<conio.h>
#include<iostream.h>
void main()
{
clrscr();
long input,negaAr[10],posiAr[10];
for (int x=0;x<10;x++)
{
cout<<"enter:";
cin>>input;
if (input<-1)
negaAr[x];
else if(input>=0)
posiAr[x];
}
cout<<"positive:"<<posiAr[x];
cout<<"negative:"<<negaAr[x];
getch();
}
i dont whats thee problem of this, ihave to input 10 integers and display the number of positive and negative.