//Dev-C++ 4.9.9.2
#include
#include
using namespace std;
int main(){
srand(time(NULL));
int ma[5][10];
int maxn=0;
double s=0;
double max=-2147483647;
for(int i=0;i<10;i++)<br> for(int j=0;j<5;j++)<br> ma[i][j]=rand()%2;
for(int j=0;j<5;j++){<br> for(int i=0;i<10;i++)<br> s=s+ma[i][j];
if(s>max){max=s; maxn=j;}
s=0;}
cout<<"Matrix"<<endl;<br> for(int i=0;i<10;i++){<br> for(int j=0;j<5;j++)<br> cout<<ma[i][j]<<" ";<br> cout<<endl;}<br> cout<<maxn+1;<br> cin.get();
cin.get();
return 0;
}