Author:
Evaluation:
Published: 12.09.2011.
Language: Latvian
Level: College/University
Literature: n/a
References: Not used
  • Samples 'Kalkulators', 1.
  • Samples 'Kalkulators', 2.
  • Samples 'Kalkulators', 3.
  • Samples 'Kalkulators', 4.
Extract

Form1.Label6.Caption:=IntToStr(c);
end;
procedure TForm1.Button4Click(Sender: TObject);
var a,b,c:integer;
begin
Form1.Button4.Caption:='rēķināt';
a:=StrToInt(Edit7.Text);
b:=StrToInt(Edit8.Text);
c:=a div b;
Form1.Label8.Caption:=IntToStr(c);
end;
end.

Author's comment
Atlants