Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
54825 | zhangsicun | 扫雷游戏地雷数计算 | C++ | 通过 | 0 MS | 252 KB | 480 | 2024-10-31 21:47:38 |
#include<bits/stdc++.h> using namespace std; char d[110][110]; int h[8]={-1,1,0,0,-1,-1,1,1}; int l[8]={0,0,-1,1,-1,1,-1,1}; int main(){ int n,m; cin>>n>>m; for(int i=1;i<=n;i++){ for(int j=1;j<=m;j++) cin>>d[i][j]; } for(int i=1;i<=n;i++){ for(int j=1;j<=m;j++){ if(d[i][j]=='*') cout<<'*'; else{ int sum=0; for(int a=0;a<8;a++){ if(d[i+h[a]][j+l[a]]=='*') sum++; } cout<<sum; } } cout<<endl; } return 0; }