procedure TForm1.Button1Click(Sender: TObject);
var a,b,x,y,z,c:real;
begin
x:=strtofloat(edit1.Text);
y:=strtofloat(edit2.Text);
z:=strtofloat(edit3.Text);
a:=(8.15*(power(x,(1/3)))*Ln(2))/(2.3*(power(Exp(1),(-2)))+z);
y:=RadToDeg;
c:=arccos-arcsin((1/3));
b:=sin(c);
label8.caption:=floattostr(b);
label6.caption:=floattostr(a);
end;
end.
var a,b,x,y,z,c:real;
begin
x:=strtofloat(edit1.Text);
y:=strtofloat(edit2.Text);
z:=strtofloat(edit3.Text);
a:=(8.15*(power(x,(1/3)))*Ln(2))/(2.3*(power(Exp(1),(-2)))+z);
y:=RadToDeg;
c:=arccos-arcsin((1/3));
b:=sin(c);
label8.caption:=floattostr(b);
label6.caption:=floattostr(a);
end;
end.