本文整理自网络,侵删。
function SuiJiString(const AWeiShu: Integer): string;const SourceStr: string = '金木水火土日月阴阳水火风雷';var MyRep: string; I: Integer;begin Randomize; for I := 1 to AWeiShu do begin //这里只所以必须加1,是因为SourceStr是从1开始的,而Random是从0开始的,SourceStr[0]就会报错,SourceStr[63]也会报错 MyRep := MyRep + SourceStr[Random(9)+1]; end; Exit(MyRep);end;
procedure TForm1.FormCreate(Sender: TObject);beginForm1.Caption:=SuiJiString(10);end;
相关阅读 >>
Delphi整理七(function and procedure)
Delphi webbrowser设置自己定义user-agent
更多相关阅读请进入《Delphi》频道 >>