/** * @(#)RandomUtil.java 2008.07.01 * Copy Right Information : Tarena * Project : DataCollectorSys_Client * JDK version used : jdk1.6.4 * Comments : 数学类-随机数生成类 * Version : 1.0 * Sr Date Modified By Why & What is modified * 1. 2007.07.17 小猪 新建 **/ package tools; import java.util.Random; /** * 数学类-随机数生成类 2008-07-16 * * @author 达内科技[Tarena Training Group] * @version 1.0 * @since JDK1.6(建议) */ public class RandomUtil { /** * 生成a-b的随机数 * * @param a * 整数a * @param b * 整数b * @return a-b的随机数 */ public static int randomInt(int a, int b) { int t, n = 0; if (a > b) { t = a; a = b; b = t; } t = (int) (Math.ceil(Math.log10(b)));// 对b向上取整 while (true) { n = (int) (Math.random() * Math.pow(10, t));// 随机数*10的t次方 if (n >= a && n <= b) break; } // System.out.println("生成的随机数如下:"+n); return n; } /** * 返回0-a的随机数。 * * @param a * 整数a。 * @return 返回0-a的随机数。 */ public static int randomInt(int a) { return new Random().nextInt(a); } }
最近下载更多
520131 LV5
2023年6月27日
微信网友_6438918626938880 LV1
2023年4月19日
酒非儿 LV6
2023年2月22日
xiaokang1 LV10
2023年1月11日
qwewrouy LV1
2022年5月29日
云水幕 LV1
2022年1月15日
978806986 LV16
2021年11月30日
1584160851 LV1
2021年8月6日
Guan008 LV4
2021年6月29日
养乐多 LV3
2021年4月25日
最近浏览更多
米继宝是憨憨 LV4
1月29日
pangzhihui LV14
2023年12月14日
15066671558
2023年10月10日
暂无贡献等级
18176866431 LV4
2023年8月28日
520131 LV5
2023年6月27日
LITIANYU084414 LV11
2023年6月16日
17683946472 LV9
2023年6月8日
海棠花瘦 LV9
2023年5月25日
luo110012 LV9
2023年5月15日
微信网友_6438918626938880 LV1
2023年4月19日