
练习题
NeilZhy
天道酬勤,还有一年
展开
-
C语言-扫雷游戏
头文件 #ifndef __MINE_H__ #define __MINE_H__ #define LINE 10 #define LIST 10 #define ROWS 6 #define COWS 6 int game(char UserBoard[LINE+2][LIST+2], char PlayerBoard[LINE][LIST]); void PrintBoard(char原创 2016-12-18 20:02:23 · 1152 阅读 · 0 评论 -
C语言-三子棋游戏
C语言中用写头文件的方式写了一个三子棋游戏 1.测试函数text.c #define _CRT_SECURE_NO_WARNINGS 1 #include #include #include #include #include"chess.h" void menu() { printf("***********************\n"); printf(原创 2016-12-07 23:38:46 · 930 阅读 · 0 评论