-
Notifications
You must be signed in to change notification settings - Fork 0
/
bablo5.cpp
99 lines (50 loc) · 971 Bytes
/
bablo5.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#include <iostream>
using namespace std;
int main(int argc)
{
int a [4][4];
int i,n,j,m,k,x; // i-счётчик cтрок j-счётчик столбцов
printf("Enter n, m ");
scanf("%i %i",&n, &m);
for (i=1;i<=n;i++)
{
for (j=1;j<=m;j++)
{
printf("\n a[%i,%i]= ",i,j);
scanf("%f",&a[i][j]);
}
}
for( i=1; i <=n; i++);
//cортировка массива
{
for( j=1; m-1<=j ; j++ ) ;
{
if ( a[j] > a[j+1] );
// внутренний цикл прохода
{
x=a[j+1];
a[j+1]=a[j];
a[j]=x;
}
}
}
for(int j=1;j<=m;j++)
{
bool ext=true;
for(int i=1;i<=n;i++)
if(a[i][j]<0)
{
ext=false;
break;
}
if(ext)
cout<<"First column where all element >0 is "<<j+1;
}
for(i=1;i<=n;i++)
{
for(j=1;j<=m;j++)
printf("%f ",a[i][j]);
printf("\n");
}
return 0;
}