返回列表 發帖
  1. import java.util.*;
  2. public class Ch01 {

  3.         public static void main(String[] args) {
  4.                 Scanner s=new Scanner(System.in);
  5.         int a[][]={{1,2,3},{4,5,6}};
  6.         int[][]b=new int[2][3];
  7.         int[][]c=new int[2][3];
  8.         String []str=s.nextLine().split(" ");
  9.         if(str.length!=6)
  10.         {
  11.                 System.out.print("error");
  12.                 return;
  13.         }
  14.         int k=0;
  15.         for(int i=0;i<2;i++)
  16.                 {
  17.                 for(int j=0;j<3;j++)
  18.                     {
  19.                             b[i][j]=Integer.parseInt(str[k]);
  20.                             k++;
  21.                             if(b[i][j]<1 || b[i][j]>100)
  22.                             {
  23.                                     System.out.print("error");
  24.                                     return;
  25.                             }
  26.                     }
  27.                 }
  28.         compute(a,b,c);
  29.                 }

  30.         private static void compute(int[][] a, int[][] b, int[][] c) {
  31.                 for(int i=0;i<2;i++)
  32.                 {
  33.                 for(int j=0;j<3;j++)
  34.                     {
  35.                             c[i][j]=a[i][j]+b[i][j];
  36.                     }
  37.                 }
  38.                 print(a,b,c);
  39.         }

  40.         private static void print(int[][] a, int[][] b, int[][] c) {
  41.                 for(int i=0;i<2;i++)
  42.                 {
  43.                 for(int j=0;j<3;j++)
  44.                     {
  45.                         System.out.printf("%4d",c[i][j]);
  46.                     }
  47.                 System.out.println();
  48.                 }       
  49.         }

  50.         }
複製代碼

TOP

返回列表