Movie Statistics Write a program that can be used to gather statistical data about the number of movies college students see in a month. The program should ask the user how many students were surveyed and dynamically allocate an array of that size. The program should then allow the user to enter the number of movies each student has seen. The program should then calculate the average, median, and mode of the values entered. TIPS: to create dynamic arrays using new method. mode: 众数,是一组数据中出现次数最多的数值。 median: 中位数,在一组排好序数据中,中间的那个数。 average: 平均值。