`
zendj
  • 浏览: 116032 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
文章分类
社区版块
存档分类
最新评论

整数判断

阅读更多

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.

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics