题目一:编写一个可以 获取任意指定范围内的随机数
Posted 勇往直前
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了题目一:编写一个可以 获取任意指定范围内的随机数相关的知识,希望对你有一定的参考价值。
分析:
键盘录入数据来指定范围:[start,end]
String start =sc.next();
String end=sc.next();
实现代码:
public static int getRoundomNum(int start, int end){
//(int)(Math.random()*100)+1 ;//[1,100] ---(1)
//(int) (Math.random()*end)+start;//[start,end+start-1] --(2)
//由式(1)(2可以推出式(3):
return (int)(Math.random()*(end-start+1))+start;//[start,end] --(3)
}
以上是关于题目一:编写一个可以 获取任意指定范围内的随机数的主要内容,如果未能解决你的问题,请参考以下文章