util.java~3~
来自「j2me源代码」· JAVA~3~ 代码 · 共 22 行
JAVA~3~
22 行
package pinball;import java.util.Random;public class Util { private static Random rnd; static { rnd = new Random(); } public static int getRandomInt(int low, int high) { if (low == high) { return low; } return low + Math.abs(rnd.nextInt()) % (high - low); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?