• 大小: 9.20KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2024-04-13
  • 语言: C/C++
  • 标签: 五子棋  

资源简介

较简单

资源截图

代码片段和文件信息

#define _CRT_SECURE_NO_WARNINGS 1

#include 
#include 
#include 
#include 
#include 

using namespace std;

const int N = 15;       //15*15的棋盘
const char ChessBoard = ‘ ‘;  //棋盘标志
const char flag1 = ‘o‘;    //玩家1或电脑标志
const char flag2 = ‘x‘;    //玩家2标志

typedef struct Position{    //坐标
    int row;        //行
    int col;        //列
}Position;

class GoBang{     //五子棋类
public:
    GoBang(){
        InitChessBoard();      //初始化棋盘
    }
    void Play(){      //下棋
        Position Play1;   //玩家1或电脑
        Position Play2;   //玩家2
        while (1){
            int mode = ChoiceMode();
            while (1){
                if (mode == 1){       //电脑VS玩家
                    ComputerChess(Play1 flag1);            //电脑走
                    if (GetVictory(Play1 0 flag1)){       //0代表电脑,为真则表示电脑获胜
                        break;
                    }
                    PlayChess(Play2 2 flag2);         //玩家2走
                    if (GetVictory(Play2 2 flag2)){       //2代表玩家2
                        break;
                    }
                }
                else{               //玩家1VS玩家2
                    PlayChess(Play1 1 flag1);         //玩家1走
                    if (GetVictory(Play1 1 flag1)){       //玩家1赢
                        break;
                    }
                    PlayChess(Play2 2 flag2);         //玩家2走
                    if (GetVictory(Play2 2 flag2)){       //玩家2赢
                        break;
                    }
                }
            }
            cout << “======再来一局=======“ << endl;
            cout << “yes or no :“;  
            char s[] = “yes“;
            cin >> s;
            if (strcmp(s “no“) == 0){
                break;
            }
        }
    }

protected:
    void InitChessBoard(){          //初始化棋盘
        for (int i = 0; i < N + 1; ++i){
            for (int j = 0; j < N + 1; ++j){
                _ChessBoard[i][j] = ChessBoard;
            }
        }
    }

    int ChoiceMode(){           //选择模式
        system(“cls“);
        //系统调用,清屏
        InitChessBoard();       //重新初始化棋盘
        cout << “*************************************************“ << endl;
        cout << “******************0、退出************************“ << endl;
        cout << “******************1、电脑VS玩家******************“ << endl;
        cout << “******************2、玩家VS玩家******************“ << endl;
        cout << “*************************************************“ << endl;
        while (1){
            int i = 0;
            cout << “请选择模式:“;
            cin >> i;
            if (i == 0){       //退出
                exit(1);
            }
            if (i == 1 || i == 2){
                return i;
            }
            else{
                cout << “非法输入,请重新输入!“ << endl;
            }
        }
    }

    void PrintChessBoard(){        //打印棋盘
        printf(“     1   

评论

共有 条评论