You are on page 1of 1

using System;

using System.Linq;

namespace Matriz
{
class Program
{
static void Main()
{
int[,] matriz = new int[4, 4];
for (int i = 0; i < 4; i++)
{
matriz[i, i] += 1;
}
}
}
}

You might also like