编写一段程序,求4行3列矩阵和3行4列矩阵的乘积(行列数可以自定义),各构成元素的值从键盘输入。...

代码入下:

#include<stdio.h>
#define M 4            //第一个矩阵的行数 、第二个矩阵的列数 (可根据自己的需要做调整) 
#define N 3            //第一个矩阵的列数 、第二个矩阵的行数(这两个参数不限制,可不一致) 
int main()
{
    int a[M][N],b[N][M],c[M][M]={
   0};
    
    int i,j,k;
    
    //ENPUTS
    puts("Please enter the first Matrix:");//The 4-3 Matrix     参数宏定义可以自己改 
    for(i = 0;i<M;i++)
        for(j = 0;j<N;j++)
            scanf("%d",&a[i][j]);
            
    puts("Please enter the second Matrix:");//The 3-4 Matrix
    for(i = 0;i<N;i++)
        for(j = 0;j<M;j++)
            scanf("%d",&b[i][j]);
    
    //DISPLAY                
    puts("The first Matrix is:");
    for(i = 0;i<M;i++){
        for(j = 0;j<N;j++)
            printf("%d\t",a[i][j]);
        putchar('\n');
    }
            
    puts("The second Matrix is:");
    for(i = 0;i<N;i++){
        for(j = 0;j<M;j++)
            printf("%d\t",b[i][j]);
        putchar('\n');
    }
    
    //RUN
    for(i = 0;i<M;i++)
        for(j = 0;j<M;j++)
            for(k = 0;k<N;k++)
                c[i][j] += a[i][k]*b[k][j];
    
    //ANSWERS
    puts("The answer of first Matrix and second Matrix is:");            
    for(i = 0;i<M;i++){
        for(j = 0;j<M;j++)
            printf("%d\t",c[i][j]);
        putchar('\n');
        }
    
    return 0;
}

 

转载于:https://www.cnblogs.com/zhaoyunt/p/11444333.html

    原文作者:aicong1807
    原文地址: https://blog.csdn.net/aicong1807/article/details/101135373
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞