mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 14:58:50 +00:00
26 lines
373 B
Text
26 lines
373 B
Text
|
|
fun sort (x) local i, j, y, n {
|
||
|
|
n := x.length;
|
||
|
|
|
||
|
|
if n == 0 then return x fi;
|
||
|
|
|
||
|
|
for i := 0, i<n, i := i+1 do
|
||
|
|
for j := i+1, j<n, j := j+1 do
|
||
|
|
if x[j] < x[i] then
|
||
|
|
y := x[i];
|
||
|
|
x[i] := x[j];
|
||
|
|
x[j] := y
|
||
|
|
fi
|
||
|
|
od
|
||
|
|
od;
|
||
|
|
|
||
|
|
return x
|
||
|
|
}
|
||
|
|
|
||
|
|
n := read ();
|
||
|
|
x := [10, 9, 8, 7, 6, 5];
|
||
|
|
|
||
|
|
x := sort (x);
|
||
|
|
|
||
|
|
for i:=0, i<x.length, i:=i+1 do
|
||
|
|
write (x[i])
|
||
|
|
od
|