Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~199 People Reached
Favorite Forums
Member Avatar for Procom22

{ class Program { static void Main(string[] args) { Random randGen = new Random(); int[] diceRolls = new int[11]; for (int i = 1; i <= 7; i++) { int diceRoll = randGen.Next(1, 7) + randGen.Next(1, 7); diceRolls[diceRoll - 2] += 1; Console.Write(diceRoll + " "); } Console.WriteLine(); Console.WriteLine("Here are …

Member Avatar for Momerath
0
199