반응형
2차원 배열 알아보러 가기
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 |
댓글