Var x, y, z: real; begin x: = strtofloat(edit1.text); y: = strtofloat(edit2.text); if combobox1.text='додавання'=true then z: =x+y else if combobox1.text='віднімання'=true then begin z: =x-y end; if combobox1.text='ділення' then begin z: =x/y; if y=0 then showmessage ='вираз значень не має' label2.caption: =floattostr(z); end; end; end. в чем ошибка