解题思路:
注意事项:
参考代码:
package arrLast; //题目 2884: 矩阵乘法 import java.util.Scanner; public class t_2884 { public static void main(String args[]) { Scanner sc=new Scanner(System.in); int n=sc.nextInt(),m=sc.nextInt(),k=sc.nextInt(); int [][]a=new int [n][m]; int [][]b=new int [m][k]; int [][]c=new int [n][k]; for(int i=0;i<a.length;i++) { for(int j=0;j<a[i].length;j++) { a[i][j]=sc.nextInt(); } } for(int i=0;i<b.length;i++) { for(int j=0;j<b[i].length;j++) { b[i][j]=sc.nextInt(); } } for(int i=0;i<c.length;i++) { for(int j=0;j<c[i].length;j++) { for(int x=0;x<m;x++) c[i][j]+=a[i][x]*b[x][j]; } } for(int i=0;i<c.length;i++) { for(int j=0;j<c[i].length;j++) { System.out.print(c[i][j]+" "); } System.out.println(); } } }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:674 |
A+B for Input-Output Practice (IV) (C++代码)浏览:713 |
C语言程序设计教程(第三版)课后习题1.6 (C++代码)浏览:909 |
【蟠桃记】 (C语言代码)浏览:697 |
WU-复数求和 (C++代码)浏览:2119 |
【金明的预算方案】 (C++代码)浏览:873 |
【矩阵】 (C++代码)浏览:999 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:580 |
The 3n + 1 problem (C语言代码)浏览:550 |
简单的a+b (C语言代码)浏览:683 |