procedure TForm1.btnCalClick(Sender: TObject);
var
sum: Extended;
begin
sum := StrToFloatDef(edt1.Text, 0)*StrToFloatDef(edt2.Text, 0) +
StrToFloatDef(edt3.Text, 0)* StrToFloatDef(edt4.Text, 0) +
StrToFloatDef(edt5.Text, 0)*StrToFloatDef(edt6.Text, 0);
lbl1.Caption := FloatToStr(sum);
end;
自己动动手吧,最基本的东西了