首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴脸红的西红柿的代码贴C语言
#include <stdio.h>
#include <stdlib.h>
#define M 4
#define N 5
void MatrixMultiply2(int A[M][N],int B[N][M],int result[M][N])
{
    int i,j,k;
    int temp;
    for(i=0;i<M;i++)
        for(j=0;j<M;j++)
    {
        temp=0;
......................
阅读全部 | 2015年8月6日 12:25
1
脸红的西红柿