c語言簡易五子棋的實現

#include <stdlib.h> #include <stdio.h> #include <conio.h> #include <string.h> #define MAXIMUS 15 //定義棋盤大小 int p[MAXIMUS][MAXIMUS];//存儲對局信息 char buff[MAXIMUS*2+1][MAXIMUS*4+3];//輸出緩衝器 int Cx,Cy;//當前光
相關文章
相關標籤/搜索