整数判断

来源:互联网 发布:淘宝评价晒不了图片 编辑:程序博客网 时间:2024/05/16 10:00

unit Unit1;

interface

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

type
  TForm1 = class(TForm)
    Edit1: TEdit;
    Button1: TButton;
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.Button1Click(Sender: TObject);
var
  i : Integer;
begin
  i := StrToInt(Edit1.Text);
  case i of
    0 : Caption := '是0';
    1..5 : Caption := '小于等于5';
    6..9 : Caption := '大于5小于10';
    10..99 : Caption := '大于等于10小于100';
  else
    Caption := '大于等于100';
  end;
end;

end.

原创粉丝点击