This is the java program to check the multiplication of the two matrices. Two matrices are multiplicable if and only if the number of rows of the left hand side matrix is equal to the number of columns of the right hand side matrix.
Here is the source code of the Java Program to Check Multiplicability of Two Matrices. The Java program is successfully compiled and run on a Windows system. The program output is also shown below.
//This is sample program to find out whether the two matrices are multiplicable or not
//The complexity of the code is O(n)(linear)
import java.util.Scanner;
public class Multiplicability_Matrix
{
public static void main(String args[])
{
Scanner sc = new Scanner(System.in);
System.out.println("Enter the dimension of the matrix:\n ");
int rowA = sc.nextInt();
int colA = sc.nextInt();
System.out.println("Enter the dimension of the other matrix:\n ");
int rowB = sc.nextInt();
int colB = sc.nextInt();
if(colA == rowB)
{
System.out.println("Matrices are multipilcable");
}
else
{
System.out.println("Matrices are not multipilcable");
}
sc.close();
}
}
Output:
$ javac Muliplicability_Matrix.java $ java Muliplicability_Matrix Enter the dimension of the matrix: 1 2 Enter the dimension of the other matrix: 2 3 Matrices are multipilcable
Related posts:
Removing Elements from Java Collections
Introduction to the Java NIO Selector
Guide to Java 8 groupingBy Collector
The StackOverflowError in Java
Java Program to Implement Binomial Tree
Java Program to Implement the MD5 Algorithm
Java Program to subtract two large numbers using Linked Lists
Getting Started with Forms in Spring MVC
Guide to CopyOnWriteArrayList
Spring Boot - Zuul Proxy Server and Routing
Disable Spring Data Auto Configuration
Guide to @ConfigurationProperties in Spring Boot
Hướng dẫn tạo và sử dụng ThreadPool trong Java
Hướng dẫn Java Design Pattern – Observer
Guide to Guava Multimap
Java Program to Implement Shoelace Algorithm
Java Program to Create a Random Graph Using Random Edge Generation
Java Program to Perform Encoding of a Message Using Matrix Multiplication
Tính đóng gói (Encapsulation) trong java
Đồng bộ hóa các luồng trong Java
Converting Iterator to List
Java Program to Implement Interpolation Search Algorithm
Autoboxing và Unboxing trong Java
Java Program to Implement Shunting Yard Algorithm
Copy a List to Another List in Java
Spring Cloud Series – The Gateway Pattern
Guide to PriorityBlockingQueue in Java
Java Program to Implement Knight’s Tour Problem
String Joiner trong Java 8
How to Remove the Last Character of a String?
Spring WebClient vs. RestTemplate
New Features in Java 15