-
Notifications
You must be signed in to change notification settings - Fork 0
/
bablo1.cpp
59 lines (54 loc) · 1.25 KB
/
bablo1.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#include <iostream>
#include <stdlib.h>
#include <time.h>
using namespace std;
int main ()
{
int **mas, n, i,j;
srand( time( NULL ) );
cout<<"Введите количество строк и столбцов матрицы: "<< endl;
cin>>n;
mas=new int*[n];
for(i=0; i<n; i++)
mas[i]=new int[n];
for(i=0; i<n; i++)
for(j=0; j<n; j++)
mas[i][j]=rand()%11-5;
cout<<"исходная матрица"<<endl;
for(i=0; i<n; i++)
{
for(j=0; j<n; j++)
{
cout.width(4);
cout<<mas[i][j]<<" ";
}
cout<<endl;
}
int min;
bool fl=true;
for(i=0; i<n; i++)
{
if(mas[i][i]<0)
{
int max=mas[i][0];
for(j=1; j<n; j++)
if(max<mas[i][j])
max=mas[i][j];
if(fl)
{
min=max;
fl=false;
}
else
{
if(max<min)
min=max;
}
}
}
if(fl)
cout<<"Искомый элемент не найден"<<endl;
else
cout<<"Искомый элемент равен: "<<min<<endl;
return 0;
}