Minesweeper (C语言代码) 摘要:解题思路:因为本人比较喜欢玩扫雷,所以就写了这篇题解哈哈。我的做法就是,读入雷区后把非雷的格子赋0,对雷区进行遍历,以每一个格子为中心,找其周围的8个格(有时候3个格或5个格),如果有雷,该格自加。注…… 题解列表 2017年12月07日 3 点赞 0 评论 1240 浏览 评分:9.9
Minesweeper (C语言描述,蓝桥杯) 摘要:#include <stdio.h> #include <string.h> void main() { int n,m,i,o,count=1,mine,cheak1,cheak2; …… 题解列表 2017年10月20日 2 点赞 0 评论 1402 浏览 评分:0.0
Minesweeper (C语言代码) 摘要:解题思路:遍历所有格子.把有雷的格子周围的空格计数+1.代码:#include <stdio.h>#include <stdlib.h>void MinesInCorner(char **,int,i…… 题解列表 2017年08月01日 2 点赞 2 评论 977 浏览 评分:0.0