unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TForm1 = class(TForm)
Edit1: TEdit;
Edit2: TEdit;
Button1: TButton;
Label1: TLabel;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
x, y:integer;
soucet:integer;
soucet1:string;
implementation
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
begin
x:=strtoint (edit1.text); …… a,b = do editu je zadán jako text, musí se převíst na číslo (strtoint)
y:=strtoint (edit2.text);
soucet:=x+y;
soucet1:=inttostr (soucet); … soucet1= abysme to mohli zobrazit musíme převíst zpět (inttostr)
label1.Caption:=soucet1; ………. do labelu vložíme výsledek
end;
end.