Computer Science, asked by ashfanakn, 5 months ago

write a java programme to multiple two given matrices​

Answers

Answered by Anonymous
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 hanishababy
0

Explanation:

please mark at brainlist please please

Attachments:
Similar questions