평균 알고리즘

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
//[?] n명의 점수 중에서 80점 이상 95점 이하인 점수의 평균
//평균 알고리즘: 주어진 범위에 주어진 조건에 해당하는 자료들의 평균
//[1] 입력: n명의 성적
namespace Project2
{
    class Class1
    {
        static void Main(string[] args)
        {
            int[] data = { 90, 65, 78, 50, 95 };
            int sum = 0;
            int count = 0;

            for (int i = 0; i < data.Length; i++)
            {
                if (data[i] >= 80 && data[i] <= 95)
                {
                    sum += data[i];
                    count++;
                }
            }
            double avg = sum / (double)count;

            Console.WriteLine($"{avg}");
        }
        
    }
}