摘要:
#include <stdio.h> #include <stdlib.h> int comp_inc(const void *first, const void *second) { return *(int *)first-*(int *)second; } int times[2048]; i 阅读全文
摘要:
#include <stdio.h> int main() { int min=0; int num; int temp; int sum=0; scanf("%d", &num); while(num--) { scanf("%d", &temp); sum+=temp; if((sum<0)&& 阅读全文
摘要:
#include <stdio.h> int main() { long long n; int a, b; scanf("%lld", &n); if(n>0) ; else { if((n>=(-10))&&(n<0)) n=0; else { a=(n%10)*(-1); b=((n/10)% 阅读全文
摘要:
@在已知输入数据规模的前提下,定义数组的时,数组的大小一定要严格且略大于该规模! @C语言中qsort函数的用法。头文件:#include <stdlib.h>。 #include <stdio.h> #include <stdlib.h> int comp_inc(const void *firs 阅读全文