mirror of
https://github.com/tiennm99/KTLT.git
synced 2026-08-05 14:02:09 +00:00
25 lines
360 B
C++
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;
|
|
}
|