第一话:如何生成一个随机数字,指定随机数范围为60-100
int f = (int)(Math.random()*40 + 60);//60 到100之间随机数字
f = (int)(Math.random()*40);//0到40之间的数字
System.out.println(Math.random());
System.out.println(f);
以上采用+60 的办法,巧妙解决了最小数是60的问题。
我们知道Math.random 生成0到0.999 More
Warning: Undefined variable $max_page in /backup/www/javaer.com/blog/wp-content/themes/yuexiaosheng/functions.php on line 139