摘要:
#include <stdio.h>#include <string.h>#include <stdlib.h>//标准库 qsort的标准库char s[10000],n,i;int cmp(const void *a, const void *b)//从小到大 不用加入形参{ return(*( 阅读全文
摘要:
(转自)ACM题目中输入数据的处理(C语言版)见:http://blog.csdn.net/sxhelijian/article/details/8978794 字符串的输入 while(gets(p)) printf("%s",p); ACM竞赛题目的输入数据常要求有多组,并且格式多种多样,这是初 阅读全文