using System;
public class 최소값알고리즘
{
public static void Main()
{
int [] 데이터 = new int[5]{33, 23, 22, 69, 88};
int 최소값 = int.MaxValue;//가장 큰 값으로 초기화
for(int i =0; i < 데이터.Length ; i++)
{
if(최소값 > 데이터[i])
{
최소값 = 데이터[i];
}
}
Console.WriteLine("최소값 : {0}", 최소값);//22
}
}