zoukankan      html  css  js  c++  java
  • c语言 510 求4行3列矩阵和3行4列矩阵的乘积。各构成元素的值从键盘输入。

    求4行3列矩阵和3行4列矩阵的乘积。各构成元素的值从键盘输入。

    1、

    #include <stdio.h>
    
    int main(void)
    {
        int i, j, k, a[4][3], b[3][4], c[4][4] = {0};
        
        puts("input the elements of 4 row 3 col array.");
        for(i = 0; i < 4; i++)
        {
            for(j = 0; j < 3; j++)
            {
                printf("a[%d][%d] = ", i, j); scanf("%d", &a[i][j]);
            }
        }
        puts("show the matrix form of 4 row 3 col array.");
        for(i = 0; i < 4; i++)
        {
            for(j = 0; j < 3; j++)
            {
                printf("%4d", a[i][j]);
            }
            putchar('\n');
        }
        putchar('\n');
        
        puts("input the elements of 3 row 4 col array.");
        for(i = 0; i < 3; i++)
        {
            for(j = 0; j < 4; j++)
            {
                printf("b[%d][%d] = ", i, j); scanf("%d", &b[i][j]);
            }
        }
        puts("show the matrix for of 3 row 4 col ayyay.");
        for(i = 0; i < 3; i++)
        {
            for(j = 0; j < 4; j++)
            {
                printf("%4d", b[i][j]);
            }
            putchar('\n');
        }
        putchar('\n');
        
        puts("calculate the multiply of arraies.");
        for(i = 0; i < 4; i++)
        {
            for(j = 0; j < 4; j++)
            {
                for(k = 0; k < 3; k++)
                {
                    c[i][j] += a[i][k] * b[k][j]; 
                }
            }
        }
        
        puts("show the multiply result.");
        for(i = 0; i < 4; i++)
        {
            for(j = 0; j < 4; j++)
            {
                printf("%4d", c[i][j]);
            }
            putchar('\n');
        }
        
        return 0;
    }

  • 相关阅读:
    JS定时执行,循环执行
    Ecshop(二次开发)
    百度歌曲接口
    给大家讲讲在哪些地方发外链最好
    360浏览器默认以兼容模式或急速模式方式打开页面
    子iframe 怎么调用 父级的JS函数
    ASP 发送邮件
    PHP发送邮件
    php表单数据验证类
    js获取url传递参数
  • 原文地址:https://www.cnblogs.com/liujiaxin2018/p/14723543.html
Copyright © 2011-2022 走看看