#include
#include
using namespace std;
int main ()
{
setlocale (0,"russian");
srand (time(NULL));
unsigned short N,a=0,b=0;
cout << "Кол-во элементов массива: ";</span>
cin >> N;
short *array=new short [N];
cout << "Случайный массив: ";<br> for (unsigned short i=0;i
{
array[i]=rand()%201-100;
cout << array[i] << ' ';<br> if (array[i]>=0) a++;
else b++;
}
cout << endl;<br> cout << "Кол-во положительных элементов: " << a;<br> cout << endl << "Отрицательных: " << b << endl;</span>
system ("PAUSE");
return 0;
}