请教一个关于Random问题(100分)

  • 主题发起人 主题发起人 renaihao
  • 开始时间 开始时间
R

renaihao

Unregistered / Unconfirmed
GUEST, unregistred user!
比如 Random(6)

我想让他随机不到2应该怎么写呢 想了好半天也想不通
 
要不你就在得到结果之后检查一下咯。呵呵。
 
先初始化一下看看
Randomize
然后再调用
Random
 
function GetRandomValue: Integer;
begin
Result := Random(6);
while (Result = 2) do
Result := Random(6);
end;
 

Similar threads

回复
0
查看
676
万一
S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
后退
顶部