Ich möchte ein Programm erstellen, das zwei beliebige Zahlen dividiert(x/y).
Gibt man für y null ein, soll eine Fehlermeldung kommen mit dem Hinweis 'Division durch 0'.
Ich habe das ganze ausprobiert, kann auch Zahlen dividieren, allerdings sürzt bei der Division durch 0 das Programm ab.
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41:
| unit Unit1;
interface
uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, ExtCtrls, StdCtrls;
type TForm1 = class(TForm) Edit1: TEdit; Edit2: TEdit; Button1: TButton; Panel1: TPanel; procedure Button1Click(Sender: TObject); private public end;
var Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject); var x,y:real; begin x:=StrToFloat(Edit1.Text); y:=StrToFloat(Edit2.Text); try Panel1.Caption:=FloatToStr(x/y); except ShowMessage('Division durch 0'); end end;
end. |