/******************************************************************************
Online C# Compiler.
Code, Compile, Run and Debug C# program online.
Write your code in this editor and press "Run" button to execute it.
*******************************************************************************/
using System;
class JogoDaVelha {
static void Main() {
char[,] tabuleiro = new char[3,3];
tabuleiro[0, 0] = 'X';
tabuleiro[1, 0] = '.';
tabuleiro[2, 0] = 'O';
tabuleiro[0, 1] = 'X';
tabuleiro[1, 1] = 'X';
tabuleiro[2, 1] = 'O';
tabuleiro[0, 2] = '.';
tabuleiro[1, 2] = 'O';
tabuleiro[2, 2] = 'X';
for (int linha = 0; linha <= tabuleiro.GetUpperBound(0); linha++)
{
for (int coluna = 0; coluna <= tabuleiro.GetUpperBound(1); coluna++)
{
Console.Write(tabuleiro[linha, coluna]);
}
Console.WriteLine();
}
}
}