读每个字符
for(int i=0;i<n;i++){ for(int j=0;j<n;j++){ cin>>s[i][j]; } }
一串一串读
for(int i=0;i<n;i++){ cin>>s[i]; }