Advertisement
Guest User

Untitled

a guest
Nov 20th, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.21 KB | None | 0 0
  1. public int[][] matrixCalc(int[][] Matrix) {
  2.     if(Matrix == null) {
  3.         return matrixCalc();
  4.     }
  5.     ....
  6. }
  7.  
  8. public int[][] matrixCalc() {
  9.     int[][] Matrix = new Int[1][1];
  10.     Matrix[0][0] = 0;
  11.     return Matrix;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement