在Java中生成隨機數可以使用Math.random()
方法。以下是一個簡單的示例代碼,生成一個范圍在1到100之間的隨機整數:
public class RandomNumberExample {
public static void main(String[] args) {
// 生成一個范圍在1到100之間的隨機整數
int randomNumber = (int) (Math.random() * 100) + 1;
System.out.println("隨機數為: " + randomNumber);
}
}
在上面的示例中,Math.random()
方法會生成一個0到1之間的隨機小數,將其乘以100然后加1,就可以得到一個1到100之間的隨機整數。您可以根據自己的需求調整范圍。