#include "stdafx.h"
#include
#include
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
setlocale(LC_ALL,"RUS");
int mas[5][10];
srand(time(NULL));
for (int i=0;i<5; i++)<br>
{
for (int j=0; j<10;j++)<br>
{
mas[i][j]=-50 + rand() % 99;
}
} int min=mas[0][0];
for (int i=0;i<5; i++)<br>
for (int j=0; j<10;j++)<br>
{
if (mas[i][j]
}
cout <<"Минимальний элемент="<<min<<endl;<br>
system("pause");
return 0;
}