返回列表 發帖
  1. import java.util.Scanner;
  2. public class Ch01{
  3.     public static void main(String args[]){
  4.         int a[][]={{1,2,3},{4,5,6}};
  5.         int b[][]=new int[2][3];
  6.         int c[][]=new int[2][3];
  7.         Scanner s=new Scanner(System.in);
  8.         String x[]=s.nextLine().split(" ");
  9.         if(x.length!=6)
  10.         {
  11.             System.out.println("error");
  12.             return;
  13.         }
  14.         try{
  15.             for(int i=0; i<2; i++)
  16.             {
  17.                 for(int j=0; j<3; j++)
  18.                 {
  19.                     b[i][j]=Integer.parseInt(x[i*3+j]);
  20.                 }
  21.             }
  22.         }
  23.                 catch(Exception e){
  24.             System.out.println("error");
  25.             return;
  26.         }
  27.         compute(a, b, c);
  28.     }
  29.     public static void compute(int a[][],int b[][],int c[][]){
  30.         for(int i=0; i<2; i++){
  31.             for(int j=0; j<3; j++)
  32.             {
  33.                 c[i][j]=a[i][j]+b[i][j];
  34.                         }
  35.                 }
  36.                 print(c);
  37.     }
  38.     public static void print(int c[][]){
  39.         for(int i=0; i<2; i++){
  40.             for(int j=0; j<3; j++)
  41.             {
  42.                 System.out.printf("%4d",c[i][j]);
  43.             }
  44.             System.out.println();
  45.         }
  46.         }
  47. }
複製代碼

TOP

返回列表