-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnaval.c
57 lines (54 loc) · 1.26 KB
/
naval.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
#include <stdio.h>
#include <stdlib.h>
int cont = 0;
int verifica(char **matriz, int numero, int aux){
int p,q;
scanf("%d",&p);
scanf("%d",&q);
if(matriz[p-1][q-1] == '#'){
cont++;
}
//
if(aux < numero){
aux++;
return(verifica(matriz,numero,aux));
}
else{
return(printf("%d\n",cont));
}
}
int main(){
char **matriz;
int m,n; //tamanho da matriz//
int jogadas; //numero de jogadas//
int aux = 1; //contador aux de jogadas feitas//
int i,j;
//capturando o numero de linhas e colunas para matriz//
scanf("%d",&m);
scanf("%d",&n);
//alocando memoria para matriz de char//
matriz = malloc(m * sizeof(char));
for(i=0; i<m; i++){
matriz[i] = malloc(n * sizeof(char));
}
//preencher a matriz de chars '.' ou '#'//
for(i=0; i<m; i++){
for(j=0; j<n; j++){
scanf(" %c",&matriz[i][j]);
}
}
/*mostrando a matriz
for(i=0; i<m; i++){
for(j=0; j<n; j++){
printf("m[%d][%d] = %c\n",i,j,matriz[i][j]);
}
}*/
//pegando o numero de jogadas//
scanf("%d",&jogadas);
//verificando//
verifica(matriz,jogadas,aux);
//
free(matriz);
matriz = NULL;
return(EXIT_SUCCESS);
}