Advertisement
masco

Untitled

Sep 17th, 2014
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.31 KB | None | 0 0
  1.         Integer[][] matrix = new Integer[5][2];
  2.  
  3.         matrix[0][0] = 1;
  4.         matrix[0][1] = 2;
  5.  
  6.         matrix[1][0] = 1;
  7.         matrix[1][1] = 3;
  8.  
  9.         matrix[2][0] = 2;
  10.         matrix[2][1] = 1;
  11.  
  12.         matrix[3][0] = 3;
  13.         matrix[3][1] = 4;
  14.  
  15.         matrix[4][0] = 4;
  16.         matrix[4][1] = 3;
  17.  
  18.         System.out.println(findReciprocal(matrix, 5));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement