#include
using namespace std;
class juzhen
{
private:
int **M; //存储矩阵
int lines; //行数
int rows; //列数
public:
juzhen(int line,int row) //构造函数
{
lines=line;
rows=row;
M=new int*[lines];
for(int i=0;i
}
~juzhen() //析构函数
{
for(int i=0;i
}
void input(); //输入元素
void print(); //输出元素
int * get_pos(); //获取矩阵的最小值的位置
};
void juzhen::input()
{
for(int i=0;i
}
void juzhen::print()
{
for(int i=0;i
for(int j=0;j
}
int *juzhen::get_pos()
{
int temp=10000;
int result[2]={0};
for(int i=0;i
for(int j=0;j
result[0]=i;
result[1]=j;
}
}
return result;
}
int main()
{
int line,row;
int *min_pos;
cout<<"输入矩阵的行与列:"<
juzhen T_juzhen(line,row);
cout<<"输入矩阵的元素:"<
cout<<"矩阵的元素为:"<
cout<<"矩阵的最小元素的位置是:"<
cout<<"("<
}