mhhh naja möglich wäre das auch durch mehrere if abfragen
Delphi-Quellcode:
if (a > b) and (a > c) then Edit2.Text := IntToStr(a);
if (b > a) and (b > c) then Edit2.Text := IntToStr(b)
else then Edit2.Text := IntToStr(c)
;
hoffe mal das das so stimmt.