c语言实现输入一组字符串,为字符串数组并且排序后输出,
#include <iostream>
#include<stdlib.h>
#include<stdio.h>
#include<string.h>
using namespace std;
void printArray(char **buff,int len);
void sortBuff(char **buff,int len);
int m...
原创
2018-05-20 21:09:25 ·
6741 阅读 ·
0 评论