用VB 写程序 产生一个11-99的随机数

2025-02-24 03:25:03
推荐回答(1个)
回答1:

Private Sub Command1_Click()
    Randomize
    Print Int(Rnd(1) * 88) + 11
End Sub