Files
2018-10-27 23:57:01 +07:00

25 lines
360 B
C++

#include <iostream>
using namespace std;
class M
{
int n;
double **m;
M(int n)
{
this->n = n;
double **m = new double *[this->n];
for (int i = 0; i < this->n; i++)
{
m[i] = new double [3];
}
}
};
int main()
{
cout << "Hello world!" << endl;
return 0;
}