DSTJZ


私信TA

用户名:dotcpp0721777

访问量:9074

签 名:

时间可以解决许多问题

等  级
排  名 48
经  验 12027
参赛次数 13
文章发表 324
年  龄 18
在职情况 学生
学  校 狗熊岭23届毕业生
专  业

  自我简介:

TA的其他文章

java--study||O.o
浏览:74
java--study||O.o
浏览:68
java--study||O.o
浏览:56


参考代码:

dx = (-1,0,1,0,-1,-1,1,1)
dy = (0,-1,0,1,-1,1,-1,1)
n, m = map(int, input().split())
map = [list(input().strip()) for _ in range(n)]
for i in range(n):
    for j in range(m):
        if map[i][j] == '*':
            print('*', end="")
        else:
            cnt = 0
            for d in range(8):
                tx, ty = i + dx[d], j + dy[d]
                if 0 <= tx < n and 0 <= ty < m and map[tx][ty] == '*':
                    cnt += 1
            print(cnt, end="")
    print()


 

0.0分

0 人评分

  评论区

  • «
  • »