添加两个随机生成的数字的总和(使用数组)

时间:2015-10-08 01:42:42

标签: c# arrays loops random sum

class Program
{
    const int ROLLS = 51;
    static void Main(string[] args)
    {
        Random r = new Random();
        int sum = 0;
        int[] dice1 = new int[ROLLS];
        int[] dice2 = new int[ROLLS];

        for (int roll = 0; roll <= 50; roll++)
        {
            dice1[roll] = GenerateNum(r);
            dice2[roll] = GenerateNum(r);
            Console.WriteLine("ROLL{0}: {1} + {2} = sum goes here", roll+1, dice1[roll]+1, dice2[roll]+1);
        }
    }

    static int GenerateNum (Random r)
    {
        return r.Next(1, 7);
    }
  }
}

所以我有两个数组来存储两个随机生成的不同的int值,我想要实现的是这两个随机生成的int值的总和。

执行时应显示: 第1卷:(随机数)+(随机数)=(两个随机数之和)

1 个答案:

答案 0 :(得分:1)

只需将两者合并在一起,然后将其存储在sum中即可。然后以与在控制台输出中显示其余值相同的方式显示sum

dice1[roll] = GenerateNum(r);
dice2[roll] = GenerateNum(r);
sum = dice1[roll] + dice2[roll];
Console.WriteLine("ROLL{0}: {1} + {2} = {3}", roll + 1, dice1[roll], dice2[roll], sum);