Saturday, September 3, 2016

Odd and Even Number Checker in Delphi

A very simple program that I wrote using Delphi as my programming language that will ask the user to give a number and then our program will check and determine whether the given number by our user is an odd or even number.

I am using Borland Delphi 7 as my Delphi compiler in this program. I hope you will like my work. Thank you very much.

Add me at Facebook my address is jakerpomperada@gmail.com and jakerpomperada@yahoo.com.
 
My mobile number here in the Philippines is 09173084360
.




Sample Program Output


Program Listing

even.pas

unit even;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;

type
  TForm1 = class(TForm)
    Label1: TLabel;
    Label2: TLabel;
    Edit1: TEdit;
    Label3: TLabel;
    Label4: TLabel;
    Label5: TLabel;
    Button1: TButton;
    Button2: TButton;
    procedure Button1Click(Sender: TObject);
    procedure Button2Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

Var Number, Check : Integer;


procedure TForm1.Button1Click(Sender: TObject);
begin
Number := StrToInt(Edit1.Text);

Check  := (Number MOD 2);

If (Check = 0) Then
  Label5.Caption := 'The given number ' + Edit1.Text + ' is a an EVEN number.'
Else
  Label5.Caption := 'The given number ' + Edit1.Text + ' is a an ODD number.'
end;

procedure TForm1.Button2Click(Sender: TObject);
begin
Edit1.Text      :='';
Label5.Caption  :='';
Edit1.SetFocus;
end;

end.





No comments:

Post a Comment