using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Runtime.InteropServices;
using System.Security.Policy;
using System.Text;
using System.Threading.Tasks;
namespace LearnDotnet
{
internal class Program
{
static void Main(string[] args)
{
Console.Write("키를 입력하세요 (단위: cm) : ");
float key1 = (float.Parse(Console.ReadLine()));
Console.Write("키를 입력하세요 (단위: cm) : ");
float key2 = (float.Parse(Console.ReadLine()));
Console.Write("키를 입력하세요 (단위: cm) : ");
float key3 = (float.Parse(Console.ReadLine()));
Console.Write("키를 입력하세요 (단위: cm) : ");
float key4 = (float.Parse(Console.ReadLine()));
Console.Write("키를 입력하세요 (단위: cm) : ");
float key5 = (float.Parse(Console.ReadLine()));
float[] keys = { key1, key2, key3, key4, key5 };
Console.WriteLine("평균: {0}cm, 최대: {1}cm, 최소: {2}cm", keys.Average(), keys.Max(), keys.Min());
}
}
}