我现在有2个文本框用来得到随机数,一个按纽用来取数
我现在在 按纽 CLICK 事件里写
sle1.text = string(rand(3))
sle2.text = string(rand(3))
//我现在要让这2个随机数不能相等
//我先想的是做比较,当:
if sle1.text = sle2.text then
//重新生成随机数,但就是这句话不知道怎么写
end if
请教各位大虾帮忙解决解决,谢谢
------解决方案--------------------
Randomize ( 0 )
int i,j
i = rand(3)
do
j = rand(3)
loop while i = j
st_1.text = string(i)
st_2.text = string(j)