返回列表 發帖

503-矩陣之和

  1. public class JPD05 {
  2.     final static int ROW = 2;
  3.     final static int COL = 3;

  4.     public static void main(String args[]) {
  5.         int A[][] = {{1,2,3}, {4,5,6}};
  6.         int B[][] = {{7,8,9}, {10,11,12}};
  7.         int C[][] = new int[ROW][COL];
  8.       
  9.         System.out.printf("陣列A的內容為(3x3):\n");   
  10.         show(A);
  11.       
  12.         System.out.printf("\n陣列B的內容為(3x3):\n");   
  13.         show(B);
  14.       
  15.         add(A, B, C);
  16.       
  17.         System.out.printf("\n陣列A+B=C,陣列C的內容為(3x3):\n");   
  18.         show(C);
  19.     }
  20.    
  21.     public static void add(________________) {
  22.         ...
  23.     }
  24.    
  25.     public static void show(________) {
  26.         ...
  27.     }
  28. }
複製代碼
Stay hungry,
Stay foolish.

  1. package hi87;

  2. public class hi78 {

  3.     final static int ROW = 2;
  4.     final static int COL = 3;

  5.     public static void main(String args[]) {
  6.         int A[][] = {{1,2,3}, {4,5,6}};
  7.         int B[][] = {{7,8,9}, {10,11,12}};
  8.         int C[][] = new int[ROW][COL];
  9.       
  10.         System.out.printf("陣列A的內容為(3x3):\n");
  11.         for(int i=0;i<2;i++)
  12.         {
  13.                 for(int j=0;j<3;j++)
  14.             {
  15.                         System.out.print(A[i][j]+" ");
  16.             }
  17.                 System.out.println();
  18.         }
  19.         //show(A);
  20.       
  21.         System.out.printf("\n陣列B的內容為(3x3):\n");   
  22.         for(int i=0;i<2;i++)
  23.         {
  24.                 for(int j=0;j<3;j++)
  25.             {
  26.                         System.out.print(B[i][j]+" ");
  27.             }
  28.                 System.out.println();
  29.         }
  30.         //show(B);
  31.       
  32.         //add(A, B, C);
  33.       
  34.         System.out.printf("\n陣列A+B=C,陣列C的內容為(3x3):\n");  
  35.         for(int i=0;i<2;i++)
  36.         {
  37.                 for(int j=0;j<3;j++)
  38.             {
  39.                         System.out.print(A[i][j]+B[i][j]+" ");
  40.             }
  41.                 System.out.println();
  42.         }
  43.         //show(C);
  44.     }
  45.    
  46.     /*public static void add(int a,int b,int c) {
  47.         for(int i=0;i<2;i++)
  48.         {
  49.                 for(int j=0;j<3;i++)
  50.             {
  51.                     a[i][j];
  52.             }
  53.         }
  54.     }
  55.    
  56.     public static void show(int c) {
  57.         ...
  58.     }*/
  59. }
複製代碼
張閎鈞OuO

TOP

本帖最後由 巫晉宇 於 2018-9-18 20:16 編輯

1234567890

TOP

public class JPD04 {
   
    public static void main(String args[]) {
     int x ;  
   
  
    int a[][]={{1,2,3},{4,5,6}};
    int b[][]={{7,8,9},{10,11,12}};
    int c[][]= new int[2][3];
    for(int i=0;i<2;i++)
    {
            for(int j=0;j<3;j++)
            {
                    c[i][j]=a[i][j]+b[i][j];
                    System.out.print(c[i][j]+"  ");
            }
            System.out.println();
    }
   
  
   
        }


}

TOP

返回列表