求矩阵的主对角线之和

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Scanner;
public class Triangle{
public static void main(String[] args)throws IOException{
int n=0;
System.out.print("enter matrix's dimension and content:");
Scanner reader=new Scanner(System.in);
n=reader.nextInt(); //n is the size of the matrix

String[] s=new String[n];
Scanner[] scan=new Scanner[n];
long[][] a=new long[n][n];
long sum=0;
BufferedReader stdin=new BufferedReader(new InputStreamReader(System.in));//BufferedReader包装字符流,将其存入缓存,可提高读的效率
for(int i=0;i<n;i++){
s[i]=stdin.readLine();
}
System.out.println("your matrix:");
for(int i=0;i<n;i++)
{
scan[i]=new Scanner(s[i]);//enter the marix number to scan[i]
}
for(int i=0;i<n;i++)
{
for(int j=0;j<n;j++)
{
a[i][j]=scan[i].nextLong();//save the matrix number to a[][]
}
}
for(int i=0;i<n;i++)
{
for(int j=0;j<n;j++)
{
if(i==j)
{
sum=sum+a[i][j];
}
System.out.print(a[i][j]+"\t");
}
System.out.println("");

}
System.out.println("matrix's sum of the main diagonal:"+sum);
}
}

转载于:https://www.cnblogs.com/sunshinewxz/p/4518301.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值