Java随机数的运用:
首先导入包:
import java.math.*
然后运用函数Math.random()*fw
其中fw可以自己设定,比如Math.random()*100;
格式为
int x=(int)(Math.random()*fw);
仅举例,不一定是int x,数组也可以。
Java学习日记
原文:https://www.cnblogs.com/chenyutong0321/p/15312575.html