c++ - 学生成绩管理系统中如何排序
黄舟
黄舟 2017-04-17 15:02:52
0
1
582

功能:排序学生的成绩,按照从小到大顺序排序(升序排序)。
参数1:score[]是学生成绩数组
参数2:length是要输入的学生成绩数组的长度
返回值:无
*/
void sortScore(int score[ ], int length)
{

}

黄舟
黄舟

人生最曼妙的风景,竟是内心的淡定与从容!

reply all(1)
大家讲道理

Use the algorithm in STL, sort(score, score + length);

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template