- import java.util.*;
- public class Ch01 {
- public static void main(String[] args) {
- Scanner s=new Scanner(System.in);
- int a[][]={{1,2,3},{4,5,6}};
- int[][]b=new int[2][3];
- int[][]c=new int[2][3];
- String []str=s.nextLine().split(" ");
- if(str.length!=6)
- {
- System.out.print("error");
- return;
- }
- int k=0;
- for(int i=0;i<2;i++)
- {
- for(int j=0;j<3;j++)
- {
- b[i][j]=Integer.parseInt(str[k]);
- k++;
- if(b[i][j]<1 || b[i][j]>100)
- {
- System.out.print("error");
- return;
- }
- }
- }
- compute(a,b,c);
- }
- private 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(a,b,c);
- }
- private static void print(int[][] a, int[][] b, 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();
- }
- }
- }
複製代碼 |