C++函数矩阵乘法
// Matrix.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include
using namespace std; int *Multi(int *a,int m1,int n1, int *b,int m2,int n2, int &m,int &n) { if(n1!=m2) { cout< 5}; int b[3][2]={6,7,8,9,10,11}; int *c,m,n; c=Multi(&(a[0][0]),2,3,&(b[0][0]),3,2,m,n); for(int i=0;i
...展开详情收缩
文件列表
Matrix.zip
(预估有个17文件)
Matrix
Matrix.dsp
4KB
Debug
vc60.pdb
108KB
vc60.idb
73KB
Matrix.obj
150KB
StdAfx.obj
2KB
Matrix.pch
199KB
Matrix.ilk
753KB
Matrix.exe
520KB
暂无评论