- #include<bits/stdc++.h>
- using namespace std;
- int main()
- {
- int n,m;
- cin>>n>>m;
- int data[n][m];
- for(int i=0;i<n;i++)
- {
- for(int j=0;j<m;j++)
- {
- cin>>data[i][j];
- }
- }
- for(int i=0;i<n;i++)
- {
- for(int j=0;j<m;j++)
- {
- if(data[i][j]==0)
- {
- cout<<' ';
- }
- else{
- if(i==0 || i==n-1 || j==0 || j==m-1 || data[i-1][j]==0 || data[i][j-1]==0 || data[i+1][j]==0 || data[i][j+1])
- cout<<'*';
- else
- cout<<' ';
- }
- }
- cout<<endl;
- }
- return 0;
- }
複製代碼 |