Wozu darf Zahl1 nicht 0 sein?
0 / irgendwas
ist doch erlaubt/möglich?
Delphi-Quellcode:
if Zahl2 <> 0 then
begin
Ergebnis := Zahl1 / Zahl2;
Label5.Caption := 'Division möglich, Ergebnis: ' + FloatToStrF (Ergebnis, FFNumber, 8, 2);
end
else
Label5.Caption := 'Zahl 1 oder 2 ist 0, Division nicht möglich';