java 求一个3*3矩阵对角线元素之和

问题描述:

java 求一个3*3矩阵对角线元素之和
求一个3*3矩阵对角线元素之和

public class GetSum {/*** @param args*/public static void main(String[] args) {// TODO Auto-generated method stubint[][] nums = { { 1,2,3 },{ 4,5,6 },{ 7,8,9 } };int sum = 0;for (int i = 0; i