This website works better with JavaScript.
Explore
Help
Sign In
pn8rjlxip
/
System
Watch
1
Star
0
Fork
You've already forked System
4
Code
Issues
Pull Requests
12
Projects
Releases
Wiki
Activity
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
513ad510ae
master
ztt3
ztt1
流程图
ztt4
mty.1
组员程序
mty.draw
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from '513ad510ae'
${ noResults }
System
/
ztt2.md
5 lines
150 B
Raw
Normal View
History
Unescape
Escape
使数据按升序排序
2 years ago
// 5使数据按升序排序
int Ascending(float a, float b)
{
return a
<
b
;
/
/
这
样
比
较
决
定
了
按
升
序
排
序
,
如
果
a
<
b
,
则
交
换
}