题解 | #矩阵乘法#

矩阵乘法

https://www.nowcoder.com/practice/ebe941260f8c4210aa8c17e99cbc663b

import java.util.Scanner;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {

    static int x = 0;
    static int y = 0;
    static int z = 0;

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        while (sc.hasNextInt()) {
            x = sc.nextInt();
            y = sc.nextInt();
            z = sc.nextInt();

            int[][] a = new int[x][y];
            for (int i = 0; i < x; i++) {
                for (int j = 0; j < y; j++) {
                    a[i][j] = sc.nextInt();
                }
            }

            int[][] b = new int[y][z];
            for (int i = 0; i < y; i++) {
                for (int j = 0; j < z; j++) {
                    b[i][j] = sc.nextInt();
                }
            }
            solution(a, b);
        }
    }

    private static void solution(int[][] a, int[][] b) {
        int[][] res = new int[x][z];
        for (int i = 0; i < x; i++) {
            for (int j = 0; j < z; j++) {
                res[i][j] = getRes(a, b, i, j);
                if (j == z - 1) {
                    System.out.print(res[i][j] + "\n");
                } else {
                    System.out.print(res[i][j] + " ");
                }
            }
        }
    }

    private static int getRes(int[][] a, int[][] b, int i, int j) {
        int sum = 0;
        for (int k = 0; k < y; k++) {
            sum += a[i][k] * b[k][j];
        }
        return sum;
    }
}

全部评论

相关推荐

一个菜鸡罢了:哥们,感觉你的简历还是有点问题的,我提几点建议,看看能不能提供一点帮助 1. ”新余学院“别加粗,课程不清楚是否有必要写,感觉版面不如拿来写一下做过的事情,教育经历是你的弱势就尽量少写 2. “干部及社团经历”和“自我评价”删掉 3. 论文后面的“录用”和“小修”啥的都删掉,默认全录用,问了再说,反正小修毕业前肯定能发出来 4. 工作经验和研究成果没有体现你的个人贡献,着重包装一下个人贡献
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务