BYRBT
摘要: 1 #include<cstdio> 2 #include<cstdlib> 3 #include<cstring> 4 5 using namespace std; 6 7 char s1[100],s2[100]; 8 9 int x[100],y[100],z[100];10 11 int max(int a,int b)12 {13 if (a>b) return a;14 else return b;15 }16 17 int main()18 {19 scanf("%s%s",s1+1,s2+1);//读入两个字符串 + 阅读全文
posted @ 2012-09-15 20:45 zhonghaoxi 阅读(213) 评论(0) 推荐(0) 编辑
BYRBT