최댓값 알고리즘: MaxAlgorithm

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
//[?] 최댓값 알고리즘: MaxAlgorithm
// 주어진 범위+ 주어진 조건의 자료들의 가장 큰 값
namespace Project2
{
    class Class1
    {
        static void Main(string[] args)
        {
            //[1]initialize
            int max = int.MinValue; //정수 형식의 데이터 중 가장 작은 값으로 초기화
            //[2]Input
            int[] numbers = { -2, -5, -3, -7, -1 };

            //[3]process: MAX
            for(int i=0; i<numbers.Length; i++)
            {
                if (numbers[i] > max) 
                {
                    max = numbers[i]; //Max: 더 큰 값으로 할당
                }
            }

            //[4]Output
            Console.WriteLine($"최댓값(식):{numbers.Max()}"); //식
            Console.WriteLine($"최댓값(문):{max}"); //문

        }
        
    }
}