摘要: //对二维数组中的字符串进行排序 //用选择排序法的思想 #include <stdio.h> #include <string.h> #define SIZE 10 #define LIMIT 80 int main(void) { char names[SIZE][LIMIT]; char *p 阅读全文
posted @ 2021-12-18 00:02 OldSword-JY 阅读(458) 评论(1) 推荐(0)