距陣相乘

來源:互聯網
上載者:User

標籤:ret   ++   code   problem   輸入   print   之間   sample   for   

將兩個給定的距陣(3*3)相乘得到另一個距陣並將其列印出來。

輸入

輸入兩個大小為3*3的距陣

輸出

輸出一個大小為3*3的距陣,矩陣每一行相鄰的的兩個數字之間由一個空格隔開。具體的請詳見 Sample Output

範例輸入
1 2 3 3 2 1 1 1 11 1 1 1 2 3 1 2 3
範例輸出
6 11 166 9 123 5 7
#include<stdio.h>int main(){    int a[3][3]={0},b[3][3]={0},c[3][3]={0},i,j,k;    for(i=0;i<3;i++)    {        for(j=0;j<3;j++)        {            scanf("%d",&a[i][j]);        }    }    for(i=0;i<3;i++)    {        for(j=0;j<3;j++)        {            scanf("%d",&b[i][j]);        }    }    for(i=0;i<3;i++)    {        for(j=0;j<3;j++)        {            for(k=0;k<3;k++)            {                c[i][j]+=a[i][k]*b[k][j];            }        }    }    for(i=0;i<3;i++)    {        for(j=0;j<3;j++)        {            printf("%d ",c[i][j]);        }        printf("\n");    }    return 0;}

 

距陣相乘

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.