home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GEMini Atari
/
GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso
/
files
/
language
/
isetl
/
median.t
< prev
next >
Wrap
Text File
|
1987-08-20
|
319b
|
19 lines
program median;
while s /= [] do
print "Enter a set or tuple:";
read s;
x := arb({ x : x in s |
#[y: y in s | y < x] = #[y: y in s | y > x] } );
if x /= om
then print ["Median of", s, "is", x];
else print [s, "has no median"];
end;
end;
end;
[1..10];
[1..11];
[x**2: x in [1..11]];
[];