본문 바로가기
코딩테스트 준비/백준 C#

백준 C# 2562

by 코딩하는 돼징 2023. 4. 11.
반응형
using System;
using System.Collections.Generic;
using System.Text;
namespace baek2
{
    class Program
    {
        
        static void Main(string[] args)
        {
            int[] arr = new int[9];
            int count = 0;
            int max = 0;
            for (int i = 0; i < arr.Length; i++)
            {
                string input = Console.ReadLine();
                arr[i] = int.Parse(input);
                if(arr[i] > max)
                {
                    max = arr[i];
                    count = i;
                }
            }
            Console.WriteLine(max);
            Console.WriteLine(count+1);
        }
    }
}
반응형

'코딩테스트 준비 > 백준 C#' 카테고리의 다른 글

백준 C# 10813  (0) 2023.04.12
백준 C# 10810  (0) 2023.04.11
백준 C# 10818  (0) 2023.04.11
백준 C# 10871  (0) 2023.04.11
백준 C# 10807  (0) 2023.04.11

댓글