- import java.util.Scanner;
- public class Main{
- public static void main(String args[]){
- int a[][]={{1,2,3},{4,5,6}};
- int b[][]=new int[2][3];
- int c[][]=new int[2][3];
- Scanner s=new Scanner(System.in);
- String x[]=s.nextLine().split(" ");
- if(x.length!=6)
- {
- System.out.println("error");
- return;
- }
- try{
- for(int i=0; i<2; i++)
- {
- for(int j=0; j<3; j++)
- {
- b[i][j]=Integer.parseInt(x[i*3+j]);
- }
- }
- }
- catch(Exception e){
- System.out.println("error");
- return;
- }
- compute(a, b, c);
- }
- public static void compute(int a[][],int b[][],int c[][]){
- for(int i=0; i<2; i++){
- for(int j=0; j<3; j++)
- {
- c[i][j]=a[i][j]+b[i][j];
- }
- }
- print(c);
- }
- public static void print(int c[][]){
- for(int i=0; i<2; i++){
- for(int j=0; j<3; j++)
- {
- System.out.printf("%4d",c[i][j]);
- }
- System.out.println();
- }
- }
- }
複製代碼 |