|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
矩陣乘法的問題
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
int x[2][3] = {{2,1,-3},{-2,2,4}};
int y[3][2] = {{-1,2},{0,-3},{2,1}};
int z[2][2];
int i,j;
for(i=0;i<2;i++){
for(j=0;j<3;j++)
cout << setw(5) << x[i][j];
cout << endl;
}
cout << endl;
for(i=0;i<3;i++){
for(j=0;j<2;j++)
cout << setw(5) << y[i][j];
cout << endl;
}
cout << endl;
for(i=0;i<2;i++){
z[i][j]=0;
for(j=0;j<2;j++){
z[i][j] = z[i][j] + x[i][j]*y[i][j];
cout << setw(5) << z[i][j];
}
cout << endl;
}
return 0;
}
這邊是我的程式碼,我不知道為什麼乘出來答案總是錯的
感謝各位抽空回覆 |
|