标签:一个 实际应用 rand out system 生成 oid code string
<1>随即范围由此可得
a=Math.random()*n的取值范围是
0<=a<=n
<2>实际应用
对于要求随机输出一个大写字母
char ss=(char)(int)(26*(Math.random())+65);//表示随机一个大写字母
System.out.println(""+ss);
对已要求随机输出一个小写字母
char es=(char)(int)(26*(Math.random())+97);//表示随机一个小写字母
System.out.println(""+es);
在进行大写字母到小写字母的转换时,通过对数字码进行改变(大写到小写+32,小写到大写-32),再进行类型转换即可
以下是实际运用
源代码:
public class First{
public static void main(String args[]){
char ss=(char)(int)(26*(Math.random())+65);//表示随机一个大写字母
System.out.println(""+ss);
char es=(char)(int)(26*(Math.random())+97);//表示随机一个小写字母
System.out.println(""+es);
}
}
运行结果:
Y
o
Java中Math.random()的应用(随机生成数的应用)
标签:一个 实际应用 rand out system 生成 oid code string
原文地址:https://blog.51cto.com/14232799/2365600