Dobrý den, zajímalo by mě jakým jednoduchým zpusobem určit největší a nejmenší čislo (celkem čísel je 5). Mám je uloženy v binárním souboru... zkoušel jsem to přes if ale vždy mě to hodí nulu...
if zn1<zn2
then
if zn1<zn3 then
if zn1<zn4 then
if zn1<zn5 then min:=zn1
else
if zn2<zn3
then if zn2<zn4 then
if zn2<zn5 then min:=zn2
else if zn3<zn4 then if zn3<zn5 then min:=zn3
else if zn4<zn5 then min:=zn3
else min:=zn5;