功能:排序学生的成绩,按照从小到大顺序排序(升序排序)。参数1:score[]是学生成绩数组参数2:length是要输入的学生成绩数组的长度 返回值:无*/void sortScore(int score[ ], int length){
}
人生最曼妙的风景,竟是内心的淡定与从容!
使用STL中的algorithm,sort(score, score + length);
使用STL中的algorithm,sort(score, score + length);