設計說明:
1. 撰寫一個函數,用來計算矩陣A與B的和,並將結果放在矩陣C裡。
2. 執行結果如範例圖。
參考程式碼:
TQC+ Java 試題總整理
- public class JPA503{
- final static int ROW = 2;
- final static int COL = 3;
- public static void main(String args[]) {
- int A[][] = {{1,2,3}, {4,5,6}};
- int B[][] = {{7,8,9}, {10,11,12}};
- int C[][] = new int[ROW][COL];
- System.out.printf("陣列A的內容為(3x3):\n");
- show(A);
- System.out.printf("\n陣列B的內容為(3x3):\n");
- show(B);
- add(A, B, C);
- System.out.printf("\n陣列A+B=C,陣列C的內容為(3x3):\n");
- show(C);
- }
- public static void add(int Array1[][],int Array2[][],int Array3[][]) {
- for(int i=0;i<ROW;i++){
- for(int j=0;j<COL;j++){
- Array3[i][j]=Array1[i][j]+Array2[i][j];
- }
- }
- }
- public static void show(int Array[][]) {
- for(int i=0;i<ROW;i++){
- for(int j=0;j<COL;j++){
- System.out.printf("%02d ",Array[i][j]);
- }
- System.out.printf("%n");
- }
- }
- }
TQC+ Java 試題總整理
聲明:
這裡的範例程式碼皆由本人親自編輯,歡迎轉載本教學,但請註明本網站,尊重一下作者的心血
沒有留言:
張貼留言
歡迎留言,較舊文章需要留言審核看不到自己的留言是正常的。
若長時間無回應請使用以下聯絡方式:
填寫表單:https://forms.gle/hxxX9n4tATcFnhnk8
寄信到:happyplayblogs@gmail.com