摘要: View Code 1 #include<stdio.h>//注意细节 2 #include<string.h> 3 #include<stdlib.h> 4 5 int cmp(const void *a,const void *b) 6 { 7 return *(int *)a - *(int *)b; 8 } 9 10 int main()11 {12 int i,j,ncases,N;13 int a[55],b[55],k,c;14 15 scanf("%d",&ncases);16 17 memset(a,0,size 阅读全文
posted @ 2012-05-07 22:44 zhongya 阅读(119) 评论(0) 推荐(0) 编辑