已有方法 rand7 可生成 1 到 7 范围内的均匀随机整数,试写一个方法 rand10 生成 1 到 10 范围内的均匀随机整数。 不要使用系统的 Math.random()方法
在线评测地址:https://www.lintcode.com/problem/implement-rand10-using-rand7/?utm_source=sc-v2ex-fks
样例 1:
输入:1
输出:[7]
样例 2:
输入:2
输出:[8,4]
样例 3:
输入:3
输出:[8,1,10]
[题解]
考点:
随机数
题解:
public class Solution extends SolBase{
public int rand10() {
while(true){
int rand49 = (rand7() - 1) * 7 + rand7() - 1;
if(rand49 <= 39) {
return rand49 / 4 + 1;
}
}
}
}
更多语言代码参见:https://www.jiuzhang.com/solution/implement-rand10-using-rand7/?utm_source=sc-v2ex-fks