题解
2022-11-27 09:58:15
发布于:江苏
#include <bits/stdc++.h>
using namespace std;
int main()
{
int n,m;
cin>>n>>m;
char a[105][105];
for(int i=1;i<=n;i++)
{
for(int j=1;j<=m;j++)cin>>a[i][j];
}
for(int i=1;i<=n;i++)
{
for(int j=1;j<=m;j++)
{
if(a[i][j]'')cout<<"";
else
{
int b=0;
for(int l=i-1;l<=i+1;l++)
for(int r=j-1;r<=j+1;r++)
if(a[l][r]'*')
b++;
cout<<b;
}
}
cout<<endl;
}
return 0;
}
全部评论 4
报错x4
2024-11-06 来自 广东
0编译错误: /code/judger/test/1836736091462660096/main.cpp:17:11: error: empty character constant
if(a[i][j]'')cout<<"";
^~
/code/judger/test/1836736091462660096/main.cpp: In function 'int main()':
/code/judger/test/1836736091462660096/main.cpp:17:11: error: expected ')' before '\x0'
/code/judger/test/1836736091462660096/main.cpp:23:11: error: expected ')' before ''
if(a[l][r]'')
^~~2024-09-19 来自 天津
0报错x3
2024-07-05 来自 北京
0报错
2024-06-05 来自 广东
0
有帮助,赞一个