Minesweeper -题解(C++代码)map 摘要: #include #include #include using namespace std; int main() { i…… 题解列表 2020年03月20日 0 点赞 0 评论 473 浏览 评分:9.9
Minesweeper -题解(C语言代码) 摘要:#include void FieldWritte(char a[10][10],char b[10][10],int m,int n); char GridWritte(char a[10]…… 题解列表 2020年03月16日 0 点赞 0 评论 247 浏览 评分:0.0
Minesweeper -题解(Python代码) 摘要:思路就是选把点换成数字0,判断某个元素是否是雷,如果是雷就将它周围不是雷的元素+1 ```python count = 1 while True: a, b = map(int, in…… 题解列表 2020年03月15日 0 点赞 0 评论 676 浏览 评分:9.9
Minesweeper -题解(C/C++)追求代码简单! 摘要:需要注意的是**数组定义不能用变量名** 比如 int i=4; int a[i]; 是错误的,但是dev这种编译器不会报错,可以运行,但里面的数据初始化时有错的! ```cpp #inc…… 题解列表 2020年02月29日 0 点赞 0 评论 424 浏览 评分:6.0
Minesweeper -题解(C语言代码) 摘要:```c #include int N,M; int f(char a[100][100],int i,int j) { if(i=M) return 0; else if(a[…… 题解列表 2020年02月15日 0 点赞 0 评论 203 浏览 评分:0.0
Minesweeper -题解(C++代码) 摘要:##### 此题不难,难在翻译,会翻译了就简单了,此题我个人感觉我用的内存比较大 #include using namespace std; int main()…… 题解列表 2020年02月14日 0 点赞 0 评论 394 浏览 评分:9.9
Minesweeper -题解(C++代码) 摘要:#include #include using namespace std; int xx[ ] = {-1, -1, -1, 0, 0, 1, 1, 1};//周边的数组一维下标 int y…… 题解列表 2020年02月13日 0 点赞 0 评论 280 浏览 评分:0.0
Minesweeper -题解(C语言描述(超简便偶)) 摘要:##思路: 这题我采用的是轰炸法,联系日常,我们常常玩的排雷游戏,雷一定比安全板块要少,所以我们可以用每一块雷进行轰炸,每炸一次+1,最后安全块上的数字就是要求数字。 如果用if进行判断到分好几种…… 题解列表 2020年02月13日 0 点赞 0 评论 478 浏览 评分:8.0
Minesweeper -题解(C语言代码) 摘要:```c #include #include char a[105][105]; int number(int x,int y,int xe,int ye) { int sum=0; …… 题解列表 2020年02月08日 0 点赞 0 评论 310 浏览 评分:0.0