// Directions: Intermediate #5-2 - Movie Theatre - This one is a little different.
// 1) Copy these directions into your clipboard.
// 2) Go to your submission for [Fork]Intermediate 5-1
// 3) Fork YOUR Intermediate 5-1 fiddle to your work area.
// 4) Hit Save.
// 5) Write code that sums each column into the array in Intermediate 5-1 into a new 1 dimensional array and output the total from the new array element.
// 6) Submit your dotnetfiddle link in Blackboard.
// Example output:
// Total Attendance for Movie #1: 1276
// Total Attendance for Movie #2: 1009
// Total Attendance for Movie #3: 1179
// Total Attendance for Movie #4: 1104
// Total Attendance for Movie #5: 1410
using System;
public class Program
{
static int[,] attendance = new int[12,5];
public static void Main()
int[] attendancesums = new int[5];
int[] items = new int[60];
Random r = new Random();
for(int mon = 0; mon < 12; mon++){
for (int film = 0; film < 5; film++){
attendance[mon, film] = r.Next(0 - 1,201);
}