摘要: 题目链接数据中有空格。2Y。View Code 1 #include<stdio.h> 2 #include<string.h> 3 int p[1001][1001]; 4 int main() 5 { 6 int a,b,c,d; 7 char str1[1001],str2[1001]; 8 while(gets(str1)) 9 {10 gets(str2);11 c=strlen(str1);12 d=strlen(str2);13 for(a=0;a<=c;a++)14 ... 阅读全文
posted @ 2012-06-11 21:45 Naix_x 阅读(161) 评论(0) 推荐(0) 编辑