Advertisement
bvdmitri

Untitled

Nov 26th, 2014
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import models.Matrix;
  2. public class Main {
  3.     public static void main(String[] args) throws Exception {
  4.         Matrix matrix = new Matrix(Matrix.Option.M1);
  5.         matrix.printMatrix();
  6.         matrix.transformGauss();
  7.         matrix.printAnswer();
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement