摘要: 1 #include<stdio.h> 2 #include<string.h> 3 4 int main() 5 { 6 7 char s1[105], s2[105]; 8 9 while(scanf("%s%s", s1, s2) != EOF)10 { 11 int i, j,len1, len2, t=0, a[105]={0}; /*也可以写到外面*/ 12 len1 = strlen(s1);13 len2 = strlen(s2);14 for(i=0,j=0; i... 阅读全文
posted @ 2011-09-20 23:22 zhongya 阅读(193) 评论(0) 推荐(0) 编辑