摘要: #include #include #include void reverse(char *p1,char *p2,int col){ int i; p2--; for(i=0;i<col/2;i++) { char t; t = *p1; ... 阅读全文
posted @ 2015-05-28 22:29 Gabyler 阅读(243) 评论(0) 推荐(0)
摘要: #include #include int main(){ int n,x,y; scanf("%d",&n); while(n--) { scanf("%d %d",&x,&y); if(x>=y) printf("MMM ... 阅读全文
posted @ 2015-05-28 16:55 Gabyler 阅读(142) 评论(0) 推荐(0)
摘要: #include #include int main(){ int n,i; while(scanf("%d",&n)!=EOF) { int temp=0,sum=0,s,t; if(n==-1) break; fo... 阅读全文
posted @ 2015-05-28 16:45 Gabyler 阅读(106) 评论(0) 推荐(0)
摘要: #include #include #includeint main(){ int n,i,set_num=0; char arr1[15][26],arr2[15][26]; char *p1_fir,*p1_sec,*p2_sta,*p2_end; while(scanf... 阅读全文
posted @ 2015-05-28 15:29 Gabyler 阅读(143) 评论(0) 推荐(0)