Trochę utknęłam i nie bardzo mi przychodzi do głowy, co wklepałam nie tak, że wyskakuje błąd? Program po naciśnięciu na przycisk ma sprawdzić, czy podane wartości w editach są odpowiednie do utworzenia trójkąta.
procedure TForm1.Button1Click(Sender: TObject);
var
a, b, c: integer;
triangle: boolean;
begin
a:=strtoint(edit1.Text);
b:=strtoint(edit2.Text);
c:=strtoint(edit3.Text);
triangle:=False;
if a+b > c then
if a+c>b then
if b+c>a then triangle:=True;
if triangle then
label1.Caption:='Triangle can be built ' (i tutaj: could not compile used unit '..\..\..\..\Users\Name\Desktop\del\Unit1.pas')
else
label1.Caption:='Triangle cannot be built ';
end;
end.