Skip to content

Commit 4072e7a

Browse files
authored
"little change"
1 parent 8356d18 commit 4072e7a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Arrays/2D Arrays/matrix_Multiplication.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public static void main(String args[]) {
4848
sum = sum + first[c][k] * second[k][d];
4949
}
5050

51-
multiply[c][d] = sum; // here sum is the element of multiply matrix and one by 1 element will be inserted
51+
multiply[c][d] = sum; // here sum is the element of multiply matrix and one by one element will be inserted
5252
sum = 0;
5353
}
5454
}

0 commit comments

Comments
 (0)