用C語言實現(xiàn)三子棋
本文實例為大家分享了用C語言實現(xiàn)三子棋的具體代碼,供大家參考,具體內(nèi)容如下
三子棋含義:
三子棋是黑白棋的一種。三子棋又叫九宮棋、圈圈叉叉、一條龍、井字棋等。將正方形對角線連起來,相對兩邊依次擺上三個雙方棋子,只要將自己的三個棋子走成一條線,對方就算輸了。但是,有很多時候會出現(xiàn)和棋的情況。圖例如下:

基本思路:
1.創(chuàng)建用戶交互菜單界面
2.初始化棋盤
3.顯示棋盤面板(為了不重復(fù)顯示棋盤,使用清屏操作)
4.用戶落子
5.判斷勝負
6.電腦隨機正確落子
7.判斷勝負
(在每次寫程序之前,可以向如下圖所示,寫出思路或偽代碼)

創(chuàng)建多文件項目:
寫代碼之前,首先建立三個文件,以方便后序代碼更加完整清晰地呈現(xiàn)。

1.創(chuàng)建用戶交互菜單界面
void Meau(){
printf("+------ meau ----------+\n");
printf("|---- 1.play --------|\n");
printf("|---- 0.quit --------|\n");
printf("+----------------------+\n");
}
2.初始化棋盤
使用宏定義,將棋盤中的內(nèi)容初始化為空。
static void InitBoard(char board[][COL], int row, int col){
for (int i = 0; i < row; i++){
for (int j = 0; j < col; j++){
board[i][j] = INIT;
}
}
}
3.顯示棋盤面板
為了不重復(fù)顯示棋盤,使用清屏操作,使得每次現(xiàn)實的棋盤只有一張。
通過不斷調(diào)試,使得最終界面,與預(yù)期所需界面一致。
static void ShowBoard(char board[][COL],int row,int col){
system("cls");//清屏操作
printf(" ");
for (int i = 0; i < col; i++){
printf(" %3d", i + 1);
}
printf("\n----------------\n");
for (int i = 0; i < row; i++){
printf("%-2d", i + 1);
for (int j = 0; j < col; j++){
printf("| %c ", board[i][j]);
}
printf("\n----------------\n");
}
}
4.用戶落子
落子只能落在為空的位置上,所以在落子前需要判空,若為空,則落子,否則提示重新落子。
static void PlayerMove(char board[][COL], int row, int col){
int x = 0;
int y = 0;
while (1){
printf("please enter your postion<x,y>: ");
scanf("%d %d", &x, &y);
if (x<1 || x>3 || y<1 || y>3){
printf("Postion Error!");
continue;
}
if (board[x - 1][y - 1] == INIT){
board[x - 1][y - 1] = WHITE;
break;
}
else{
printf("Postion Is Not Empty!\n");
}
}
}
5.電腦隨機正確落子
使用隨機數(shù),在正確位置落子。
static void ComputerMove(char board[][COL], int row, int col){
while (1){
int x = rand() % row;
int y = rand() % col;
if (board[x][y] == INIT){
board[x][y] = BLACK;
break;
}
}
}
6.判斷勝負
static char IsEnd(char board[][COL], int row, int col){
for (int i = 0; i < row; i++){
if (board[i][0] == board[i][1] && \
board[i][1] == board[i][2] && \
board[i][0] != INIT){
return board[i][0];
}
}
for (int j = 0; j < col; j++){
if (board[0][j] == board[1][j] && \
board[1][j] == board[2][j] && \
board[0][j] != INIT){
return board[0][j];
}
}
if (board[0][0] == board[1][1] && \
board[1][1] == board[2][2] && \
board[0][0] != INIT){
return board[0][0];
}
if(board[0][2] == board[1][1] && \
board[1][1] == board[2][0] && \
board[1][1] != INIT){
return board[1][1];
}
for (int i = 0; i < row; i++){
for (int j = 0; j < col; j++){
if (board[i][j] == INIT);
return NEXT;
}
}
return DRAW;
}
7.創(chuàng)建Game界面
void Game()
{
char board[ROW][COL];
InitBoard(board, ROW, COL);
srand((unsigned long)time(NULL));
char result = 0;
while (1){
ShowBoard(board, ROW, COL);
PlayerMove(board, ROW, COL);
result = IsEnd(board, ROW, COL);
if (result != NEXT){
break;
}
ShowBoard(board, ROW, COL);
ComputerMove(board, ROW, COL);
result = IsEnd(board, ROW, COL);
if (result != NEXT){
break;
}
}
ShowBoard(board, ROW, COL);
switch (result){
case WHITE:
printf("You win!\n");
break;
case BLACK:
printf("you lose!\n");
break;
case DRAW:
printf("it ends in a draw\n");
break;
defult:
printf("bug\n");
break;
}
}
完整代碼
//main.c文件
#include"game.h"
void Meau(){
printf("+------ meau ----------+\n");
printf("|---- 1.play --------|\n");
printf("|---- 0.quit --------|\n");
printf("+----------------------+\n");
}
int main(){
int select = 0;
int quit = 0;
while (!quit)
{
Meau();
printf("please enter your choose: ");
scanf("%d", &select);
switch (select)
{
case 1:
Game();
break;
case 0:
quit = 1;
break;
defult:
printf("Select error!Try again!\n");
break;
}
}
printf("byebye!\n");
system("pause");
return 0;
}
//game.c 文件
#include"game.h"
static void InitBoard(char board[][COL], int row, int col){
for (int i = 0; i < row; i++){
for (int j = 0; j < col; j++){
board[i][j] = INIT;
}
}
}
static void ShowBoard(char board[][COL],int row,int col){
system("cls");
printf(" ");
for (int i = 0; i < col; i++){
printf(" %3d", i + 1);
}
printf("\n----------------\n");
for (int i = 0; i < row; i++){
printf("%-2d", i + 1);
for (int j = 0; j < col; j++){
printf("| %c ", board[i][j]);
}
printf("\n----------------\n");
}
}
static char IsEnd(char board[][COL], int row, int col){
for (int i = 0; i < row; i++){
if (board[i][0] == board[i][1] && \
board[i][1] == board[i][2] && \
board[i][0] != INIT){
return board[i][0];
}
}
for (int j = 0; j < col; j++){
if (board[0][j] == board[1][j] && \
board[1][j] == board[2][j] && \
board[0][j] != INIT){
return board[0][j];
}
}
if (board[0][0] == board[1][1] && \
board[1][1] == board[2][2] && \
board[0][0] != INIT){
return board[0][0];
}
if(board[0][2] == board[1][1] && \
board[1][1] == board[2][0] && \
board[1][1] != INIT){
return board[1][1];
}
for (int i = 0; i < row; i++){
for (int j = 0; j < col; j++){
if (board[i][j] == INIT);
return NEXT;
}
}
return DRAW;
}
static void PlayerMove(char board[][COL], int row, int col){
int x = 0;
int y = 0;
while (1){
printf("please enter your postion<x,y>: ");
scanf("%d %d", &x, &y);
if (x<1 || x>3 || y<1 || y>3){
printf("Postion Error!");
continue;
}
if (board[x - 1][y - 1] == INIT){
board[x - 1][y - 1] = WHITE;
break;
}
else{
printf("Postion Is Not Empty!\n");
}
}
}
static void ComputerMove(char board[][COL], int row, int col){
while (1){
int x = rand() % row;
int y = rand() % col;
if (board[x][y] == INIT){
board[x][y] = BLACK;
break;
}
}
}
void Game()
{
char board[ROW][COL];
InitBoard(board, ROW, COL);
srand((unsigned long)time(NULL));
char result = 0;
while (1){
ShowBoard(board, ROW, COL);
PlayerMove(board, ROW, COL);
result = IsEnd(board, ROW, COL);
if (result != NEXT){
break;
}
ShowBoard(board, ROW, COL);
ComputerMove(board, ROW, COL);
result = IsEnd(board, ROW, COL);
if (result != NEXT){
break;
}
}
ShowBoard(board, ROW, COL);
switch (result){
case WHITE:
printf("You win!\n");
break;
case BLACK:
printf("you lose!\n");
break;
case DRAW:
printf("it ends in a draw\n");
break;
defult:
printf("bug\n");
break;
}
}
//game.h文件
#ifndef __GAME_H__
#define __GAME_H__
#include<stdio.h>
#include <time.h>
#include <stdlib.h>
#include<windows.h>
#pragma warning(disable:4996)
#define ROW 3
#define COL 3
#define INIT ' '
#define WHITE 'X'//player
#define BLACK 'O'//computer
#define DRAW 'D'
#define NEXT 'N'
extern void Game();
#endif
代碼結(jié)果顯示

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

