C# 的新手很抱歉,如果这很愚蠢。
到目前为止,关于我的骰子,我有以下代码:
Random DiceRandom = new Random();
int DiceThrow = DiceRandom.Next(1, 7);
Console.WriteLine(DiceThrow);
Console.ReadLine();
Console.WriteLine("Player 1 rolled a " + DiceThrow);
Console.ReadLine();
Console.WriteLine("Player 2 rolled a " + DiceThrow);
Console.ReadLine();
Console.WriteLine("Player 3 rolled a " + DiceThrow);
Console.ReadLine();
Console.WriteLine("Player 4 rolled a " + DiceThrow);
Console.ReadLine();
现在,这会创建一个很好的数字并显示它,但是对于每个玩家来说它都是相同的数字。
我需要一个循环来为每个玩家重复滚动,如果玩家滚动 6,它将再次滚动。