Problem E: 【数组】对角线之和
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:66
Solved:28
Description
上机练习5.2.3 输入一个n*n方阵,分别求两条对角线上元素之和。
Input
第一行,一个整数n,1≤n≤100;
接下来共n行,每行n个整数(范围为0~32767),表示n阶方阵。
Output
一个整数,表示方阵两条对角线元素之和(注意同一元素不要重复计算)。
Sample Input Copy
4
1 2 3 4
5 6 7 8
1 2 3 7
5 6 7 8
Sample Output Copy
36