设计静态方法模拟一对骰子。也就是说,随机出现一对 1, 2, 3, 4, 5, 6 之间的一个数。要求显示第一个骰子上的数,再显示第二个骰子上的数,最后输出显示两个数之和。
程序员文章站
2022-07-07 10:38:51
...
设计静态方法模拟一对骰子。也就是说,随机出现一对 1, 2, 3, 4, 5, 6 之间的一个数。要求显示第一个骰子上的数,再显示第二个骰子上的数,最后输出显示两个数之和。如:
The first die comes up 3
The second die comes up 5
The total roll is 8
package Random;
import java.util.Random;
public class test {
public static void main(String[] args) {
Random a = new Random();
Random b = new Random();
int x = a.nextInt(6)+1;
int y= b.nextInt(6)+1;
int z = x + y;
System.out.println("The first die comes up " + x);
System.out.println("The second die comes up " + y);
System.out.println("The total roll is " + z);
}
}
注意:随机数的范围是前闭后开的
eg:a的范围是[1,7)
上一篇: 投骰子的随机游戏
下一篇: 用python写一个掷骰子的游戏,并统计