1
0
forked from leto/LeMA
LeMA/main.cpp
2024-12-24 13:58:59 +01:00

18 lines
210 B
C++

#include<iostream>
#include "matrices.h"
// using namespace std;
int main()
{
srand(time(0));
Matrix a(3,1);
a.Randomize();
Matrix b = a;
a.Print("A");
b.Print("B");
return 0;
}