excel随机数生成问题 要求相邻两数之差不得大于0.02
答案:1 悬赏:50 手机版
解决时间 2021-03-22 21:07
- 提问者网友:伴风望海
- 2021-03-22 08:38
例如,2.37到2.46之间,在excel的一行中(不是一列)生成40个随机数,要求相邻两数之差不得大于0.02(可以等于)。
最佳答案
- 五星知识达人网友:躲不过心动
- 2021-03-22 10:16
sheet1,第一行第一格开始连写40个
Sub r40()
While i <= 40
i = i + 1
Randomize
Sheet1.Cells(1, i).Value = 2.37 + Round(Rnd() * 0.09, 2)
If i <> 1 Then
If Abs(Sheet1.Cells(1, i).Value - Sheet1.Cells(1, i).Value) > 0.02 Then
i = i - 1
End If
End If
Wend
End Sub
Sub r40()
While i <= 40
i = i + 1
Randomize
Sheet1.Cells(1, i).Value = 2.37 + Round(Rnd() * 0.09, 2)
If i <> 1 Then
If Abs(Sheet1.Cells(1, i).Value - Sheet1.Cells(1, i).Value) > 0.02 Then
i = i - 1
End If
End If
Wend
End Sub
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯