文章
40
粉丝
512
获赞
13
访问
372.9k
#include<bits/stdc++.h>
using namespace std;
char a[101][101];
int main(){
int pos=0;
string str;
int s;
while(cin>>str){
// if(str=="0"){
// break;
// }
s=str.size();
for(int i=0;i<s;i++){
a[pos][i]=str[i];
}
pos++;
}
int cx=0;
for(int i=0;i<pos;i++){
int temp=0;
for(int j=0;j<s;j++){
if(a[i][j]=='#'){
temp++;
}
}
if(temp>0){
cx==temp;
break;
}
}
int cy=0;
for(int i=0;i<s;i++){
int temp=0;
for(int j=0;j<pos;j++){
if(a[j][i]=='#'){
temp++;
}
}
if(temp>0){
cy=temp;
break;
}
}
int ans;
if(cx==0&&cy==0){
ans=-1;
}else{
ans=max(cx,cy);
}
cout...
登录后发布评论
应该不是这个题吧