-
Notifications
You must be signed in to change notification settings - Fork 0
/
MV.c
64 lines (58 loc) · 1001 Bytes
/
MV.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
56
57
58
59
60
61
62
63
64
/* Gerar uma matriz 3x5 com os números aleatórios [0,5].
Armazenar em um vetor a soma dos elementos de cada coluna.
Implementar as funções:
- Aleatório
- Mostra_Matriz
- Soma_Colunas
- Mostra_Vetor
*/
#include <stdio.h>
void aleatorio (int M[ ][5])
{
srand (time(NULL));
int i, j;
for (i=0;i<3;i++) {
for (j=0;j<5;j++) {
M[i][j] = rand()%6;
}
}
}
void Mostra_Matriz (int M[][5])
{
int i, j;
printf ("\n ******** Matriz ******** \n");
for (i=0;i<3;i++) {
for (j=0;j<5;j++) {
printf ("%3i", M[i][j]);
}
printf ("\n");
}
}
void Soma_Colunas (int M[ ][5], int V[ ])
{
int i, j;
for (i=0;i<5;i++)
V[i] = 0;
for (j=0;j<5;j++) {
for (i=0;i<3;i++) {
V[j] += M[i][j];
}
}
}
void Mostra_Vetor (int V[ ])
{
int a;
printf ("\n ********* Vetor ********* \n");
for (a=0;a<5;a++) {
printf ("%i \t", V[a]);
}
printf ("\n");
}
int main ()
{
int Mat [3][5], Vet[5];
aleatorio (Mat);
Mostra_Matriz (Mat);
Soma_Colunas (Mat, Vet);
Mostra_Vetor (Vet);
}