摘要: # include <stdio.h># include <string.h>int main(){ char s1[1000], s2[1000]; int i, j, k1,k2 ; while ( scanf("%s%s", s1, s2) != EOF) { getchar(); k1=strlen(s1); k2=strlen(s2); printf("%d %d\n",k1,k2); if(strcmp(s1,s2)==0)printf("SAME\n"); else pri... 阅读全文
posted @ 2012-11-17 23:51 孤独是一种力量 阅读(115) 评论(0) 推荐(0)