1. 首页
  2. 课程学习
  3. C++/C
  4. 黑白棋C语言

黑白棋C语言

上传者: 2019-01-15 19:33:35上传 CPP文件 17.39KB 热度 54次
黑白棋C语言 #include using namespace std; const int MAX=10000;//常变量 enum Color{WHITE=-1,BLANK,BLACK};///-1为白子1为黑子 class Choice { public: int posX; int posY; int score; }; class Chessman { public: enum Color color; unsigned stable; /* 棋子的稳定性(0~8),若棋子为BLANK则表示该位置落子后可翻过的
用户评论