@@ -6,16 +6,16 @@ int main()
{
srand(time(0));
Matrix a(3,3);
Matrix b(3,3);
Matrix a(2,1);
Matrix b(1,2);
a.Randomize();
b.Randomize();
a.Print("A");
b.Print("B");
a.Add(&b);
a.Print("A+B");
a.Multiply(&b).Print("A x B");
return 0;
}
The note is not visible to the blocked user.