// C# Program to check if two
// given matrices are identical
using System;
class GFG {
static int N = 4;
// This function returns 1 if A[][]
// and B[][] are identical
// otherwise returns 0
static int areSame(int [,]A, int [,]B)
{
int i, j;
for (i = 0; i < N; i++)
for (j = 0; j < N; j++)
if (A[i,j] != B[i,j])
return 0;
return 1;
}
// Driver code
public static void Main ()
{
int [,]A = { {1, 1, 1, 1},
{2, 2, 2, 2},
{3, 3, 3, 3},
{4, 4, 4, 4}};
int [,]B = { {1, 1, 1, 1},
{2, 2, 2, 2},
{3, 3, 3, 3},
{4, 4, 4, 4}};
if (areSame(A, B) == 1)
Console.WriteLine("Matrices "
+ "are identical");
else
Console.WriteLine("Matrices "
+ "are not identical");
}
}
// This code is contributed by anuj_67.