-
Notifications
You must be signed in to change notification settings - Fork 3
/
lab16-02.c
executable file
·54 lines (45 loc) · 2.09 KB
/
lab16-02.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
/** lab16-02.c
* ===========================================================
* Name:
* Section:
* Project: Lab 16
* Purpose:
* ===========================================================
*/
#include <stdio.h>
#include "lab16functs.h"
char penteBoard[19][19] = {
{' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','W',' ',' ',' ',' ',' ',' ',' ',' '},
{' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' '},
{' ',' ',' ',' ',' ',' ','B',' ',' ',' ','Y',' ','W',' ',' ',' ',' ',' ',' '},
{' ',' ',' ',' ',' ',' ','B','Y','W','Y','Y','Y',' ','W',' ',' ',' ',' ',' '},
{' ',' ',' ',' ',' ',' ','B',' ','Y','Y',' ','B',' ',' ',' ',' ',' ',' ',' '},
{' ',' ',' ',' ',' ','G','W','W','W','Y','B','Y',' ',' ',' ',' ',' ',' ','G'},
{' ',' ',' ',' ','G',' ',' ','W','Y','Y','Y','G',' ',' ',' ',' ',' ','G',' '},
{'B',' ',' ','G','W','W','W','W','W','Y','G','G',' ','B','B','B','G',' ',' '},
{'B','Y','B',' ',' ',' ',' ','B',' ',' ',' ',' ',' ','G',' ',' ',' ',' ',' '},
{'B',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ','G',' ',' ',' ',' '},
{'B',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' '},
{'B',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' '},
{' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' '},
{' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' '},
{' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' '},
{' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' '},
{' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' '},
{' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' '},
{' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' '}
};
int main() {
int row;
int col;
printf("Enter a row and column: ");
scanf("%d %d", &row, &col);
char winner = penteWinner(penteBoard, row, col);
if (winner == ' ') {
printf("No winner at row %d, col %d\n", row, col);
}
else {
printf("Player %c wins at row %d, col %d\n", winner, row, col);
}
return 0;
}