Guest User

Untitled

a guest
Jun 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.34 KB | None | 0 0
  1.         for(int i = 0; i < names.length; i++) {
  2.             System.out.print(names[i] + " had scores of ");
  3.             for(int j = 0; j < scores[i].length; j++) {
  4.                 System.out.print(scores[i][j]);
  5.                 if(j != scores[i].length - 1) {
  6.                     System.out.print(", ");
  7.                 }
  8.             }
  9.         }
Add Comment
Please, Sign In to add comment