三子棋遊戲

2021-08-11 16:41:06 字數 2092 閱讀 1757

閒來無事,竟意外發現了三子棋遊戲,順便實現了這個過程,我們一起來看下。

三子棋的實現需要的是五個函式,我用了initboard(初始化棋盤函式),display(列印棋盤函式),player(玩家), computer(電腦),check_full(判斷棋盤是否已滿,從而判斷輸贏)

game.h

#define _crt_secure_no_warnings

#ifndef __test_h__

#define __test_h__

#include #include #include #include #define rows 3

#define cols 3

void initboard(char[rows][cols], int row, int cols);

void display(char[rows][cols], int row, int cols);

void player(char[rows][cols], int row, int cols);

void computer(char[rows][cols], int row, int cols);

int check_full(char[rows][cols], int row, int cols);

#endif

game.c

#define _crt_secure_no_warnings

#include "test.h"

void initboard(char arr[rows][cols], int rows, int cols)

void display(char arr[rows][cols], int rows, int cols) }}

void computer(char arr[rows][cols], int rows, int cols)

} check_full(arr, rows, cols);

}void player(char arr[rows][cols], int rows, int cols)

else

}else

}check_full(arr, rows, cols);

}int check_full(char arr[rows][cols], int rows, int cols)

} for (i = 0; i < cols; i++)

if ((((arr[0][0] == arr[1][1]) && (arr[1][1] == arr[2][2])) || ((arr[0][2] == arr[1][1]) && (arr[1][1] == arr[2][0]))) && (arr[1][1] != ' '))

}for (i = 0; i < rows; i++)

}} return 'p';

}

test.c

#define _crt_secure_no_warnings

#include "test.h"

void menu()

void game()

; char ret = 0;

initboard(arr, rows, cols);

display(arr, rows, cols);

srand((unsigned int)time(null));

while (1)

if(check_full(arr, rows, cols) == 'p')

player(arr, rows, cols);

display(arr, rows, cols);

if (check_full(arr, rows, cols) == 0)

if (check_full(arr, rows, cols) == 'p')

}}int main()

} while (input);

getchar();

return 0;

}

執行效果圖

三子棋遊戲

首先介紹一下三子棋遊戲規則 這是乙個玩家和電腦對戰的三子棋遊戲 棋盤如上圖所示,三個棋子連在一起則勝利 下面就是用c語言實現的方法 建立棋盤 利用二維陣列來實現乙個棋盤,棋盤剛開始是沒有任何棋子的,將二維陣列所有元素初始化為空格即可 玩家下棋 玩家輸入棋盤中的對應座標來下棋,下棋時需要考慮輸入座標合...

三子棋遊戲

遊戲部分思路 初始化棋盤 玩家下棋 輸出棋盤 判斷輸贏 電腦下棋 判斷輸贏 迴圈這部分,直到有人贏得比賽 效果圖 test,c原始檔 define crt secure no warnings include game.h void menu void game char win init boar...

三子棋遊戲

c語言三子棋遊戲 define crt secure no warnings 1 include include include game.h include game.h void print chessboard char coord 3 else if i 17 6 i 17 12 else ...