import java.util.Scanner;
public class Main {
public static void Sum(int[][] array){
int sum = 0;
int sumA = 0;
for(int i=0;i<3;i++){
for(int j=0;j<3;j++){
if(i==j)
sum+=array[i][j];
if(i+j==2)
sumA+=array[i][j];
}
}
System.out.println(sum+" "+sumA);
}
public static void main(String[] arg){
Scanner sc = new Scanner(System.in);
int[][] array = new int[3][3];
for(int i=0;i<3;i++){
for(int j=0;j<3;j++){
array[i][j] = sc.nextInt();
}
}
Sum(array);
}
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题5.8 (C语言代码)浏览:981 |
A+B for Input-Output Practice (V) (C语言代码)浏览:640 |
C语言程序设计教程(第三版)课后习题8.7 (C语言代码)浏览:609 |
关于C语言变量位置的问题浏览:294 |
【亲和数】 (C语言代码)浏览:628 |
DNA (C语言代码)浏览:798 |
蛇行矩阵 (C语言代码)浏览:560 |
川哥的吩咐 (C语言代码)浏览:664 |
交换Easy (C语言代码)浏览:805 |
1052题解(链表操作)浏览:782 |