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

백준 C# - 2566

by 코딩하는 돼징 2023. 5. 17.
반응형

2차원 배열 알아보러 가기

 

C# - 2차원 배열

1. 초기화 및 값 할당 방법 int [,] = new int [3,3]; 01 초기화 구문을 사용하여 값 할당 int[,] array = new int[,]{ { 1 , 2 , 3 } , { 4 , 5 , 6 } , { 7 , 8 , 9 } }; 02 인덱스를 사용하여 값 할당 array[0,1] = 1; array[0,2] = 2; a

code-piggy.tistory.com


using System;
using System.Collections.Generic;

namespace baek2
{
    class Program
    {
        static void Main(string[] args)
        {
            int max = 0;
            int[,] array = new int[9, 9];
            int max_i = 0;
            int max_j = 0;
            for (int i = 0; i < 9; i++)
            {
                string row = Console.ReadLine();
                string[] token = row.Split();
                for(int j = 0; j<9; j++)
                {
                    array[i, j] = int.Parse(token[j]);
                    if (max < array[i, j])
                    {
                        max_i = i;
                        max_j = j;
                        max = array[i, j];
                    }
                }
            }
            Console.WriteLine(max);
            Console.WriteLine($"{max_i+1} {max_j+1}");
        }
    }
}
반응형

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

백준 C# - 2563 +) 풀이  (0) 2023.05.18
백준 C# - 10798  (0) 2023.05.18
백준 C# - 2738  (0) 2023.05.15
백준 C# - 25206  (1) 2023.05.15
백준 C# - 1316  (0) 2023.05.15

댓글