#include <stdio.h> //冒泡排序 int sort_char(char str[][101], int n) //二维数组作为参数 { char tmp[101] = {0}; for(int i = 0; i < n; i++) { for(int j = i+1; j < n; j++) { if(strcmp(str[i], str[j]) > 0) //字符串比较 { //交换字符串 strcpy(tmp, str[i]); strcpy(str[i], str[j]); strcpy(str[j], tmp); } } } return...