вылезает ошибка:
unit1.pas(80,5) Note: Local variable "I" is assigned but never used
Вот код:
procedure TForm1.Button2Click(Sender: TObject);
var I,U,R,t,Q:double;
begin
I:=StrToFloat(Edit2.Text);
U:=StrToFloat(Edit3.Text);
R:=StrToFloat(Edit4.Text);
t:=StrToFloat(Edit5.Text);
Q:=StrToFloat(Edit6.Text);
if CheckBox1.Checked
then begin
if RadioButton1.Checked
then
end;
end.