当前位置: 技术问答>java相关
如何取得随机的3位数,如能告诉我用什么方法(),或源代码,望各位大侠赐教。给40分(内空)
来源: 互联网 发布时间:2015-01-25
本文导语: | max) { return 0; } rand=min+(int)((max-min+1)*java.lang.Math.random()); } catch(Exception e) {} return rand; } %> getRandom(100,999); 这是jsp中的随机数呀,改改即可 | double temp1 = Math.random(); temp1 = Math.rint(temp1*...
|
max)
{
return 0;
}
rand=min+(int)((max-min+1)*java.lang.Math.random());
}
catch(Exception e)
{}
return rand;
}
%>
getRandom(100,999);
这是jsp中的随机数呀,改改即可
{
return 0;
}
rand=min+(int)((max-min+1)*java.lang.Math.random());
}
catch(Exception e)
{}
return rand;
}
%>
getRandom(100,999);
这是jsp中的随机数呀,改改即可
|
double temp1 = Math.random();
temp1 = Math.rint(temp1*900)+100;
System.out.println(temp1);
temp1 = Math.rint(temp1*900)+100;
System.out.println(temp1);
|
public long r()
{
double d = Math.random() * 1000;
long l = Math.round(d);
if (l == 1000)
l = l -1;
return l;
}
{
double d = Math.random() * 1000;
long l = Math.round(d);
if (l == 1000)
l = l -1;
return l;
}
|
连这都问