Home > Q&A > body text
功能:排序学生的成绩,按照从小到大顺序排序(升序排序)。参数1:score[]是学生成绩数组参数2:length是要输入的学生成绩数组的长度 返回值:无*/void sortScore(int score[ ], int length){
}
大家讲道理2017-04-17 15:04:52
Use the algorithm in STL, sort(score, score + length);
Home
Course
Q&A
My