编写程序模拟掷骰子游戏 说明:统计掷5000次,两个骰子的点数之和 写法一: package com.java; /** * @Author: mzy * @Date: 2019-1-22 14:22 */ public class DiceGame { /** * 编写程序模拟掷骰子游戏 * 说明:统计掷5000次,两个骰子的点数之和 */ public static void main(String[] args) { int[] a = {0,0,0,0,0,0,0,0,0,0,0}; for ...