扫雷游戏Minesweeper 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> #include<algorithm> using namespace std; con…… 题解列表 2024年06月20日 0 点赞 0 评论 136 浏览 评分:0.0
我的思路找*号周围加一(*号不加) 摘要:```cpp #include using namespace std; char jia (char a) { if(a!='*') { a++; } return…… 题解列表 2024年06月22日 0 点赞 0 评论 238 浏览 评分:0.0
编写题解 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 评论 206 浏览 评分:0.0