?? maintest.cpp
字號(hào):
#include "Matrix.h"
#include <iostream>
using namespace std;
int main ()
{
int nrow,ncol ;
cout<<"input nrow,ncol"<<endl;
cin>>nrow>>ncol ;
Matrix ma(nrow,ncol) ;
//Matrix ma;
cout<<ma.getCol()<<" "<<ma.getRow()<<endl;
ma.InitializeMatrix();
cout<<ma <<endl ;
for(int i=0;i<ma.getRow() ;i++)
delete[] ma.Array[i];
delete[] ma.Array;
return 0;
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -