[백준]C# 코딩 : 2562번(최댓값)

728x90

https://www.acmicpc.net/problem/2562

 

2562번: 최댓값

9개의 서로 다른 자연수가 주어질 때, 이들 중 최댓값을 찾고 그 최댓값이 몇 번째 수인지를 구하는 프로그램을 작성하시오. 예를 들어, 서로 다른 9개의 자연수 3, 29, 38, 12, 57, 74, 40, 85, 61 이 주어

www.acmicpc.net

using System;

namespace backjoon
{
    class Program
    {
        static void Main(string[] args)
        {
            int[] arr = new int[9];
            int max = 0;
            int index = 0;

            for(int i = 0; i < 9; i++)
            {
                arr[i] = int.Parse(Console.ReadLine());
            }
            for (int i = 0; i < arr.Length; i++)
            {
                if (arr[i] > max)
                {
                    max = arr[i];
                    index = i + 1;
                }
            }
            Console.WriteLine(max);
            Console.WriteLine(index);
        }
    }
}
728x90