C語言程式設計 兩矩陣加減乘,轉置,讀入,儲存,要求有選單

時間 2021-08-11 17:41:09

1樓:匿名使用者

發給你了~~有錯找我~

2樓:匿名使用者

選單自己弄,就給你個範例。可以實現矩陣加,減,乘,及轉置

兩個檔案,一個叫matrix.h, 一個叫matrix.cpp

//matrix.h

#ifndef _matrix_h_

#define _matrix_h_

#include

#include

#include

#include

class matrixobj

;void matrixobj::displaymatrix()

}float matrixobj::cofactor(int i,int j)

float matrixobj::matrixdeterminent()

matrixobj matrixobj::matrixinverse()

y = z / det;

return y;

}matrixobj matrixobj::matrixtranspose()

matrixobj operator+(matrixobj &x, matrixobj &y)

matrixobj operator-(matrixobj &x, matrixobj &y)

matrixobj operator*(matrixobj &x, matrixobj &y)

matrixobj operator/(matrixobj &x, float d)

c語言程式設計實現23的矩陣轉置,C語言程式設計實現2 3的矩陣轉置

include iostream usingnamespacestd voidzhuangzhi inta 3 3 intm,n,i for m 0 m 2 m for i 0 i 3 i if m!1 i!0 n a i m a i m a m i a m i n intmain inta 3 3...

c語言程式設計實現將44階矩陣轉置,C語言程式設計實現,將4 4階矩陣轉置

轉置前 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 轉置後 1 5 9 13 2 6 10 14 3 7 11 15 4 8 12 16 include define n 4 void transpose int a n void show int a n int ...

c語言 寫一函式,將3 3矩陣轉置,輸入矩陣,輸出轉

2.矩陣轉置 3.字串連線 第2題 include using namespace std void convert int a 3 convert a return 0 第三題 include include using namespace std void func char a,char b ...