给定0到4的随机数的方法,产生0到6的随机数的方法

public class Frequency {
public static int rand7()
{
while(true)
{
int num=5*rand5()+rand5();
if(num<21)
{
return num % 7;
}
}


}
}

你可能感兴趣的:(cracking,the,coding,interview)