#include "stdafx.h"
#include
using namespace std;
int main ()
{
setlocale(LC_ALL, "RUS");
int s=0, a [10];
for(int i=0; i<10; i++)</span>
a[i] = 0+rand()%2;
for(int i=0; i<10; i++)</span>
{
if (a[i]==1) s=s+1;
}
cout << "количество единиц в массиве = " << s << endl;</span>
return 0;
}