배열이란?배열은 하나의 데이터 타입을 가지는 여러 개의 값들을 저장합니다. 예를 들어, 정수형 배열에는 정수만 저장할 수 있습니다. 배열 전체 코드using System;namespace MyCompiler { class Program { public static void Main(string[] args) { string coffeeA = "A커피"; string coffeeB = "B커피"; string coffeeC = "C커피"; Console.WriteLine(coffeeA); Console.WriteLine(coffeeB); Console.WriteLine(c..