?? cdet.h
字號(hào):
#ifndef CDET_H
#define CDET_H
class CDet
{
private:
int **Mat;
int Dim;//dimension of **Mat
public:
//constructor and destructor
CDet(int dim);
~CDet();
//function calculate determinant of Mat
int Determinant(int **mat,int dim);
public:
//remove elements in ith row and jth column of mat
int **DeDim(int **mat,int dim,int i,int j);
int **GetMat(){return Mat;}//access to **Mat
int GetDim(){return Dim;}//access to Dim
};
#endif
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -