Нужен человек который шарит в программировании. такова нужно в программе описать каждую строчку подробно что она означает. . unit unit1; interface uses windows, messages, sysutils, variants, classes, graphics, controls, forms, dialogs, stdctrls; type tform1 = class(tform) edit1: tedit; edit2: tedit; edit3: tedit; label1: tlabel; label2: tlabel; label3: tlabel; label4: tlabel; label5: tlabel; button1: tbutton; procedure button1click(sender: tobject); private { private declarations } public { public declarations } end; var form1: tform1; implementation {$r *.dfm} procedure tform1.button1click(sender: tobject); var x,y,z,p: real; begin x: =strtofloat(edit1.text); y: =strtofloat(edit2.text); z: =strtofloat(edit3.text); p: =(3*x*(exp(3*ln(+(sqrt(y+sqr(x)*z))+ln(z)); p: =p/(abs(x-y+sqr(z))+(sin(x)*sin(; label5.font.color: =clblue; label5.caption: ='результат: '+#13+'p='+ floattostr(5); end; end.