2차원 배열을 사용하여 점수에 대한 합계와 평균 구하기

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
//[?] 2차원 배열을 사용하여 점수에 대한 합계와 평균 구하기
namespace Project2
{
    class Class1
    {
        static void Main(string[] args)
        {
            //[1]input
            int[,] scores = { { 90,100, 0,0}, {80, 90, 0,0 }, {100,80,0,0 } };

            //[2]process: SUM, COUNT, AVERAGE -> COUNT
            for (int i = 0; i < 3; i++)
            {
                scores[i, 2] = scores[i, 0] + scores[i, 1];
                scores[i, 3] = scores[i, 2] / 2;

            }

            //[3]output
            Console.WriteLine("국어 영어 합계 평균");
            for(int i=0; i<3; i++)
            {
                for(int j=0; j<4; j++)
                {
                    Console.Write($"{scores[i, j],4}");
                }
                Console.WriteLine();
            }

        }
        
    }
}