P2670 扫雷游戏
Posted jackwang-sparrow
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了P2670 扫雷游戏相关的知识,希望对你有一定的参考价值。
地址:https://www.luogu.com.cn/problem/P2670
#include<iostream>int a[105][105]={0}; using namespace std; int main() { int n,m; cin>>n>>m; int i,j; char b; for(i=1; i<=n; i++) { for(j=1; j<=m; j++) { cin>>b; if(b==‘*‘) a[i][j]=1; } } for(i=1; i<=n; i++) { for(j=1; j<=m; j++) { if(a[i][j]==1) { printf("*"); } else { printf("%d",a[i+1][j+1]+a[i+1][j-1]+a[i+1][j]+a[i][j+1]+a[i][j-1]+a[i-1][j+1]+a[i-1][j]+a[i-1][j-1]); } } cout<<endl; } }
以上是关于P2670 扫雷游戏的主要内容,如果未能解决你的问题,请参考以下文章