// 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
{
public static void Main()
// Your code from 5-1
// 2) Write code that sums each column into the array in Intermediate 5-1 into a new 1 dimensional array.
}