Skip to content

kwasibaidoo/MatrixMultiplication

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Java Program To Multiply Two Matrices


Write a program that performs the multiplication of two matrices A and B taken from the user. The result of the multiplication will be stored in a third matrix C, which will then be displayed.
sample input:

Matrix A: 2,3
| 12 2 4 |
| 10 1 1 |

Matrix B: 3,2
| 2 2 |
| 1 2 |
| 1 1 |


Expected output:

Matrix C:

| 30  32 |
| 22  23 |

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages