#include<stdio.h> int get_count(char arr[1001][1001], int i, int j) { if (arr[i][j] == '*')//arr[i][j]是雷就返回-1,不是雷就计算周围有多少个雷。 return -1; int cou...