题解 1024: [编程入门]矩阵对角线求和

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

[编程入门]矩阵对角线求和--朴素方法

摘要:解题思路:将矩阵的每一行转变成一个列表,最后利用相应列表的元素相加求解注意事项:参考代码:m=list(map(int,input().split()))n=list(map(int,input().……

矩阵对角线求和

摘要:解题思路:注意事项:参考代码:ls = []for i in range(3):    a = list(map(int,input().split()))    ls.append(a)i = ls……

矩阵对角线求和

摘要:解题思路:注意事项:参考代码:a = list(map(int,input().split()))b = list(map(int,input().split()))c = list(map(int,……

矩阵对角线求和

摘要: x1,x2,x3 = map(int,input().split()) x4,x5,x6 = map(int,input().split()) x7,x8,x9 = map(int,inp……

两行代码搞定

摘要:解题思路:利用list和map、循环直接输入一个二维列表注意事项:参考代码:  a=[list(map(int,input().split())) for i in range(3)]        ……