Guest User

Untitled

a guest
Jan 21st, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.19 KB | None | 0 0
  1. public void LeerMatriz(Entrada p){
  2.     for(int i=0;i<fil;i++){
  3.         for(int j=0;j<col;j++){
  4.             try{
  5.                 mt[i][j]=p.Leer();
  6.             }catch(EOFException e) {}
  7.             catch(NullPointerException e){}
  8.         }
  9.     }
  10. }
Add Comment
Please, Sign In to add comment