-
Notifications
You must be signed in to change notification settings - Fork 0
/
1_7.c
52 lines (51 loc) · 865 Bytes
/
1_7.c
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
#include<stdio.h>
int n,i,j,m;
void main()
{
int matrix[m][n];
scanf("%d%d",&m,&n);
for(i=0;i<m;i++)
{
for(j=0;j<n;j++)
{
scanf("%d",&matrix[i][j]);
}
}
make_0(matrix);
for(i=0;i<m;i++)
{
for(j=0;j<n;j++)
{
printf("%d\n",matrix[i][j]);
}
}
}
void make_0(int matrix[][n])
{
int row[m],column[n];
for(i=0;i<m;i++)
row[i]=0;
for(j=0;j<n;j++)
column[j]=0;
for(i=0;i<m;i++)
{
for(j=0;j<n;j++)
{
if(matrix[i][j]==0)
{
row[i]=1;
column[j]=1;
}
}
}
for(i=0;i<m;i++)
{
for(j=0;j<n;j++)
{
if((row[i]==1||column[j]==1))
{
matrix[i][j]=0;
}
}
}
}