小游戏
c
稚如初靥
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
扫雷游戏
C语言 扫雷游戏 #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include <time.h> //扫雷游戏 #define MAX_ROW 9 #define MAX_COL 9 #define MINE_MAX_COUNT 10 int Menu(){ ...原创 2019-12-14 00:10:35 · 179 阅读 · 0 评论 -
五子棋游戏
C语言 五子棋游戏 //五子棋游戏 #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include <time.h> #define MAX_ROW 5 #define MAX_COL 5 //棋盘初始化 void Init(char chessBoard[MAX...原创 2019-12-14 00:07:39 · 333 阅读 · 0 评论 -
猜数字游戏
C语言 猜数字游戏 #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include <time.h> //猜数字游戏 int Menu(){ printf("====================\n"); printf("欢迎来到猜数字游戏!\n"); ...原创 2019-12-01 23:42:57 · 172 阅读 · 0 评论 -
First Flag
Flag First of all, It's my pleasure to be here to introduce myself, just a brief self introduction, My name is YANG YING, and you can also call me my English name Angela.I come from Shaanxi province,f...原创 2019-11-09 19:43:51 · 729 阅读 · 0 评论
分享