五子棋
#include
#define nr 10
void showbg(char bg[nr][nr]);
//能下返回真 不能下則返回假
int checkdown(char bg[nr][nr],int x,int y);
//如果發生勝負關係 則返回真 否則返回假
int checkwin(char bg[nr][nr],int x,int y,int flag);
int main(void)
;int x,y,flag=1; //1:表示a方』#』 -1表示b方』m』
showbg(bg);
while(1)
//能下則下
bg[y][x]=flag;
showbg(bg);
//檢查勝負關係
if(checkwin(bg,x,y,flag))
//未發生勝負 則換對方下
flag=-flag;
}return 0;
}void showbg(char bg[nr][nr])
c 小遊戲 五子棋
include include includeusing namespace std const int x 21 棋盤行數 const int y 21 棋盤列數 char p x y 定義棋盤 int m 0 定義臨時點,儲存輸入座標 int n 0 void display 輸出棋盤 else...
c 小遊戲 五子棋
include include includeusing namespace std const int x 21 棋盤行數 const int y 21 棋盤列數 char p x y 定義棋盤 int m 0 定義臨時點,儲存輸入座標 int n 0 void display 輸出棋盤 else...
五子棋的小遊戲
感想 終於寫出人生中第乙個小遊戲來了 include include include include using namespace std const int x 21 棋盤行數 const int y 21 棋盤列數 char p x y 定義棋盤 int m 0 定義臨時點,儲存輸入座標 in...