Поделитесь своими знаниями, ответьте на вопрос:
Напишіть, що це все означає procedure tform1.button1click(sender: tobject); begin if edit1.text='' then showmessage(пусті значення недопустимі') else if edit2.text='' then showmessage('пусті значення недопустимі') else if edit3.text='' then showmessage('пусті значення недопустимі') else if edit4.text='' then showmessage('пусті значення недопустимі') else if edit5.text='' then showmessage('пусті значення недопустимі')else if edit6.text='' then showmessage('пусті значення недопустимі')else begin edit7.text: =floattostr(strtofloat(edit1.text)*strtofloat(edit4.text)); edit10.text: =floattostr(strtofloat(edit7.text)/100*13); edit13.text: =floattostr(strtofloat(edit7.text)-strtofloat(edit10.text)); edit8.text: =floattostr(strtofloat(edit2.text)*strtofloat(edit5.text)); edit11.text: =floattostr(strtofloat(edit8.text)/100*13); edit14.text: =floattostr(strtofloat(edit8.text)-strtofloat(edit11.text)); edit9.text: =floattostr(strtofloat(edit3.text)*strtofloat(edit6.text)); edit12.text: =floattostr(strtofloat(edit9.text)/100*13); edit15.text: =floattostr(strtofloat(edit9.text)-strtofloat(edit12.text)); edit16.text: =floattostr(strtofloat(edit13.text)+strtofloat(edit14.text)+strtofloat(edit15.text)); end; end; end.