当前位置: > java返回一个 low 到 high的随机整数 (包括low和high)....
题目
java返回一个 low 到 high的随机整数 (包括low和high).
Which /* expression */ will always return a value that satisfies the postcondition?( )
(A) (int) (Math.random() * high) + low;
(B) (int) (Math.random() * (high - low)) + low;
(C) (int) (Math.random() * (high - low + 1)) + low;
(D) (int) (Math.random() * (high + low)) + low;

提问时间:2021-01-23

答案
public int getRandom(int low,int high){
    Random r=new Random();
    int rand=r.nextInt(high-low+1);//产生一个0到high-low的整数
    return rand+low;
}
举一反三
我想写一篇关于奥巴马的演讲的文章,写哪一篇好呢?为什么好
奥巴马演讲不用看稿子.为什么中国领导演讲要看?
想找英语初三上学期的首字母填空练习……
英语翻译
1,人们染上烟瘾,最终因吸烟使自己丧命.
版权所有 CopyRight © 2012-2019 超级试练试题库 All Rights Reserved.