Delphi-Quellcode:
if ((Zahl1 > 19) and (Zahl1 < 24)) and ((Zahl2 > 19) and (Zahl2 < 24)) then
begin
Label1.Caption := 'Zahl1 UND Zahl2 zwischen 19 und 24';
end else
begin
Label1.Caption := 'mh ?!';
end;
oder meinste mehr das hier:
Delphi-Quellcode:
if ((Zahl1 > 19) and (Zahl1 < 24)) or ((Zahl2 > 19) and (Zahl2 < 24)) then // Man beachte das or
begin
Label1.Caption := 'Zahl1 UND Zahl2 zwischen 19 und 24';
end else
begin
Label1.Caption := 'mh ?!';
end;
[edit]
Zitat:
[Fehler] uMain.pas(870): E2010 Inkompatible Typen: 'Real' und 'Integer'
Zeig das mal, was in der Zeile steht...[/edit]