lama_byterun/regression/test037.expr

27 lines
376 B
Text
Raw Normal View History

fun sort (x) {
local i, j, y, n;
2018-04-30 18:12:12 +03:00
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