-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path04.c
53 lines (38 loc) · 1.04 KB
/
04.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
53
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
void geraMatriz(int matriz[100][100], int n, int m) {
srand(time(NULL));
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
matriz[i][j] = rand() % 50; //prencher os valores
}
}
}
void printfMatriz(int matriz[][100], int n, int m){
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
printf("%d ", matriz[i][j]);
}
printf("\n");
}
printf("\n");
}
void printDiagonal(int matriz[][100], int n, int m){
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
if (i == j)
printf("%d ", matriz[i][j]);
}
}
printf("\n");
}
int main(){
int n, m;
printf("Digite o número de linhas x colunas: ");
scanf("%d%d", &n,&m);//limita as linhas e colunas da matriz
int matriz[100][100];
geraMatriz(matriz, n, m);
printfMatriz(matriz, n, m);
printDiagonal(matriz, n, m);
}