提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
一个程序使用一种确定1到10之间的随机数的方法:
public class RandomNumber { public static void main(String[] args) { int number = getRandomNumber(); System.out.println("The number is " + number);/**来自 时 代 Java 公 众 号 - nowjava.com**/ } public static int getRandomNumber() { int num = (int)(Math.random() * 10) + 1; return num; } }