摘要:
http://poj.org/problem?id=1936 1 #include 2 #include 3 #include 4 #define max 100010 5 using namespace std; 6 char s[max],s1[max]; 7 int main() 8 { 9 while(scanf("%s %s",s,s1)!=EOF){10 11 int k1=strlen(s);12 int k2=strlen(s1);13 int t=0,c=0;14 for(int i=0;i<k1;i++... 阅读全文