-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path01.c
55 lines (40 loc) · 1.26 KB
/
01.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
54
55
#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() % 10; //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");
}
}
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]; // Declare a matriz com o tamanho máximo
// Chamar a função para gerar a matriz com base em n e m
geraMatriz(matriz, n, m);
printf("gerando Matriz...\n\n");
_sleep(1000);
int maior_valor = matriz[0][0];
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
if (matriz[i][j] > maior_valor) {
maior_valor = matriz[i][j];
}
}
}
printfMatriz(matriz, n,m); //chama a funcao para printf matriz
printf("\nO maior valor na matriz: %d\n", maior_valor);
return 0;
}