gpt4 book ai didi

Delphi7,Randomize,从1到6中选择随机数,但不能是0

转载 作者:行者123 更新时间:2023-12-03 15:37:27 25 4
gpt4 key购买 nike

我想做 2 个骰子,但我不希望它选择 0,这是我的代码:

procedure TForm1.Button1Click(Sender: TObject);
var x1,x2:integer; text1,text2:string;
begin
randomize;
x1:=random(7);
x2:=random(7);

text1:=inttostr(x1);
text2:=inttostr(x2);

label1.Caption:=text1;
label2.Caption:=text2;

end;
end.

我应该怎么做才能让它从1到6中选择,而不包括0?谢谢

最佳答案

x1:=random(6) + 1;

应该可以解决问题,它现在永远不会返回零。

关于Delphi7,Randomize,从1到6中选择随机数,但不能是0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16309417/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com