题解 | #矩阵乘法#

矩阵乘法

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

while True:
    try:
        x = int(input())
        y = int(input())
        z = int(input())
        #m1 = [[0]*x]*y
        m1 = []
        m2 = []
        res = [[0]*z for i in range(x)]
        for i in range(x):
            m1.append(list(map(int,input().split())))#list的append是加为不同的list,+表示合并为一个list
        for i in range(y):
            m2.append(list(map(int,input().split())))
        #print(m2)
        for i in range(x):
            for j in range(y):
                for e in range(z):
                    res[i][e] += m1[i][j] * m2[j][e] #注意是+=不然没有累加算出的只是最后一次计算的结果
        for i in res:
            print(' '.join(map(str,i)))
        #print(res)
    except:
        break
全部评论

相关推荐

头像
10-15 22:27
已编辑
门头沟学院 C++
罗格镇的小镇做题家:我投了hr打电话来说学历太低了不符合要求,建议投荣耀,结果荣耀也投了一定水花没有,非本211硕
投递华为等公司10个岗位
点赞 评论 收藏
分享
09-27 00:29
东北大学 Java
伟大的麻辣烫:查看图片
阿里巴巴稳定性 75人发布 投递阿里巴巴等公司10个岗位
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务