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