编写题解 1096:一眼丁真的扫雷 摘要:#include<stdio.h> int x(char s[][100],int i,int j,int n,int m); int main(){ int n,m,c=0,k[100][1…… 题解列表 2024年11月09日 0 点赞 0 评论 110 浏览 评分:0.0
编写题解 1096: Minesweeper--C语言二维数组模拟地雷详解 摘要:`解题思路:` - 使用二维字符数组存储地雷信息,`*`表示有地雷,`.`表示安全。 - 确定了行列数后,声明两个二位数组(分别用于存储地雷信息和地雷数量),且在原来的行列数上增加两行两列,…… 题解列表 2023年12月16日 0 点赞 0 评论 169 浏览 评分:9.9
Minesweeper(水题) 摘要:```c #include //题目挺简单的,细心就好,唯一要注意的就是逐个输入字符要耀getchar忽略掉输入的换行。 int main(){ int n,m,i,j,k=0; ch…… 题解列表 2023年01月13日 0 点赞 0 评论 125 浏览 评分:9.9
20221124Minesweeper 摘要:解题思路:创建一个(二维)字符数组与一个(二维)整数数组在字符数组中输入'*'或'.'时进行判断:若'*',则将其符号数组下标对应相同下标的整数数组元素…… 题解列表 2022年11月24日 0 点赞 0 评论 106 浏览 评分:0.0
Minesweeper(c语言) - 代码很简单, 无需动脑 摘要:一遍写完,没做优化,跟着代码走读就能理解参考代码:#include <stdio.h> void InitBoard(char board[100][100], int row, int col) …… 题解列表 2022年11月01日 0 点赞 0 评论 100 浏览 评分:0.0
敲简单C语言代码!!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j,n,r,p,q,k,w=0; char a[100][100]; while(~sc…… 题解列表 2022年10月31日 0 点赞 0 评论 83 浏览 评分:0.0
Minesweeper(留个记录) 摘要:解题思路:注意事项:字符输入—scanf(" %c")(空格可换成\n \t),单个字符读取,可忽略掉空格、换行参考代码:#include <stdio.h> //查找周围雷的数量 int min…… 题解列表 2022年08月19日 0 点赞 0 评论 141 浏览 评分:9.9
c语言方法(常规) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>/* run this program using the console pauser or …… 题解列表 2022年05月30日 0 点赞 0 评论 109 浏览 评分:0.0
Minesweeper(c 语言)简单明了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>char sweep(char a[][100],int n,int m){ int i,j,k=0; char coun…… 题解列表 2021年12月16日 0 点赞 1 评论 224 浏览 评分:9.9
Iridescent --Minesweeper 摘要:# Minesweeper ## 注意事项:getchar消化换行符 ### 思路:创建一个存储初始雷图的字符数组,以及一个与之对应的int数组,在雷图中找雷,找到后在对应的int数组位置,使其周…… 题解列表 2021年09月13日 0 点赞 0 评论 427 浏览 评分:9.9