求一个模型的算法(50分)

  • 主题发起人 主题发起人 gdzscj
  • 开始时间 开始时间
G

gdzscj

Unregistered / Unconfirmed
GUEST, unregistred user!
我想做一个模型,有一个label1,当时钟开始运行时,label1的caption会显示0数到9,到9后又会倒数回0,也就是现示0123456789876543210……。请问这个算法该怎样写?
 
Create a project with a form。
drag a TTimer and a label。
所有代码如下:
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls;
type
TForm1 = class(TForm)
Timer1: TTimer;
procedure Timer1Timer(Sender: TObject);
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
FInc, FNum: Integer;
public
{ Public declarations }
end;

var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.Timer1Timer(Sender: TObject);
begin
Caption := IntToStr(FNum);
FNum := FInc + FNum;
if FNum = 9 then
FInc := -1;
if FNum = 0 then
FInc := 1;
end;

procedure TForm1.FormCreate(Sender: TObject);
begin
FInc := 1;
FNum := 0;
end;

end.
 
你比较label1.caption的不就可以?
var i:integer;
repeat
if i=10 then
i:=0;
label1.caption:=inttostr(i);
inc(i);
until false;
 
接受答案了.
 
后退
顶部