@ -0,0 +1,5 @@
// 5使数据按升序排序
int Ascending(float a, float b)
{
return a < b; // 这样比较决定了按升序排序,如果a<b,则交换
}