-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMission2_1.java
More file actions
56 lines (50 loc) · 1.17 KB
/
Mission2_1.java
File metadata and controls
56 lines (50 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package chapter4;
import java.util.Scanner;
public class Mission2_1 {
private int[][] a;
private int[][] b;
int row;
int col;
void createMat() {
Scanner sc = new Scanner(System.in);
System.out.print("# of Rows: ");
row = sc.nextInt();
System.out.print("# of Columns: ");
col = sc.nextInt();
System.out.println();
a = new int[row][col];
b = new int[col][row];
for (int i = 0; i < row; i++) {
for (int j = 0; j < col; j++) {
System.out.print("Matrix A[" + i + "][" + j + "]: ");
a[i][j] = sc.nextInt();
}
}
System.out.println();
for (int i = 0; i < col; i++) {
for (int j = 0; j < row; j++) {
System.out.print("Matrix B[" + i + "][" + j + "]: ");
b[i][j] = sc.nextInt();
}
}
System.out.println();
sc.close();
}
void matMul() {
for (int i = 0; i < row; i++) {
for (int k = 0; k < row; k++) {
int sum = 0;
for (int j = 0; j < col; j++) {
sum += a[i][j] * b[j][k];
}
System.out.print(sum + "\t");
}
System.out.println();
}
}
public static void main(String[] args) {
Mission2_1 m = new Mission2_1();
m.createMat();
m.matMul();
}
}