write a java programme to multiple two given matrices
Answers
Answered by
1
Java Program to multiply two matrices
public class MatrixMultiplicationExample{
public static void main(String args[]){
//creating two matrices.
int a[][]={{1,1,1},{2,2,2},{3,3,3}};
int b[][]={{1,1,1},{2,2,2},{3,3,3}};
//creating another matrix to store the multiplication of two matrices.
Answered by
0
Explanation:
please mark at brainlist please please
Attachments:
Similar questions
History,
2 months ago
Political Science,
2 months ago
French,
2 months ago
English,
5 months ago
Political Science,
10 months ago
History,
10 months ago