#include<stdio.h> #include<string.h> #include<stdlib.h> char a[110][1100]; int min(int a,int b) { if(a>b) return b; return a ; } int cmp(int x,int y) { char b[1000],c[1000];//本来我在这里想直接对字符串a操作的,但是呢a是全局变量,后面还要输出 strcpy(b,a[x]); strcpy(c,a[y]); ...