Nama : Slamet Riyanto
Nim : 0401060095
Prodi : Pendidikan Matematika
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TForm1 = class(TForm)
Label1: TLabel;
Edit1: TEdit;
Button1: TButton;
Label2: TLabel;
Edit2: TEdit;
Label3: TLabel;
Label4: TLabel;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
var a:integer;
ket:String;
begin
a:=StrToInt(Edit1.Text);
if (a mod 2=0) then
begin
if a>0 then ket:=’Genap Positif’
else ket:=’Genap Negatif’
end
else
if a<0 then ket:=’Ganjil Negatif’
else ket:=’Ganjil Positif’;
edit2.text:=ket;
end;
end.