导航

2020年6月13日

摘要: 1 #include <stdio.h> 2 #include <string.h> 3 4 //逆序排列 5 void invertSort(char str[], int len) 6 { 7 printf("逆序排列 : ") ; 8 for(int i = len-1 ; i >= 0 ; 阅读全文

posted @ 2020-06-13 17:11 ErgoCogito 阅读(242) 评论(0) 推荐(0) 编辑