Tugas I Inter Face: Program Studi Teknik Listrik Jurusan Teknik Elektro Politeknik Negeri Ujung Pandang Makassar 2017
Tugas I Inter Face: Program Studi Teknik Listrik Jurusan Teknik Elektro Politeknik Negeri Ujung Pandang Makassar 2017
Inter Face
SEMESTER GENAP 2016/2017
DIBUAT OLEH :
321 15 062
unit Unit1;
interface
uses
Dialogs, StdCtrls;
type
TForm1 = class(TForm)
Label1: TLabel;
Edit1: TEdit;
Edit2: TEdit;
Edit3: TEdit;
Edit4: TEdit;
Button1: TButton;
Button2: TButton;
Label2: TLabel;
Label3: TLabel;
Label4: TLabel;
Label5: TLabel;
Label6: TLabel;
Label7: TLabel;
Label8: TLabel;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
var
harga,jumlah:real;
bayar:real;
begin
harga:=StrToFloat(edit2.Text);
jumlah:=StrToFloat(edit3.Text);
bayar:=harga*jumlah;
edit4.Text:=FloatToStr(bayar);
end;
begin
close;
end;
begin
end;
end.
B. Output Program