我想做 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?谢谢