Advertisement
Guest User

Untitled

a guest
Nov 18th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. int[] mayf = new int [nfila];
  2. for(f=0;f<matriz.length;f++){
  3. mayf[f]=matriz[f][0];
  4. for(c=0;c<matriz[f].length;c++){
  5. if(matriz[f][c]>mayf[f]){
  6. mayf[f]=matriz[f][c];
  7. }
  8. }
  9. }
  10. System.out.println(mayf[f]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement