如何随机生成 75 - 100% 之间的数字?
我知道如何在 0 到 100 之间进行操作,但是我可以设置下限吗?
这就是我做0 - 100的方式..
int randomNum = (int) Math.ceil(Math.random() * 100);
I know how to do it between 0 and 100, but I can I set the floor?
This is how I do 0 - 100..
int randomNum = (int) Math.ceil(Math.random() * 100);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
生成 0 到 25 之间的随机数并添加 75。:)
Generate a random number from 0 to 25 and add 75. :)
生成 0 到 25 之间的数字,然后加上 75。
Generate a number between 0 and 25 and then add 75.
在 0 到 25 之间进行计算,然后加上 75。
Do it between zero and 25 and add 75.
我知道这个问题已经得到解答,但正确的答案没有代码片段。所以这里有一个小代码片段:
I know this is answered already but correct answer did not have code snippet. So here is a little code snippet: