In this assignment you’ll practice encapsulating data and behavior in a small Java program while reviewing linear algebra basics. The core problem is to compute the determinant of a matrix.
This code implements a calculator to find the determinant of a 3x3 matrix using Sarrus' rule. The calculator continues to calculate determinants until the user chooses to exit. • The program displays ...