Created
February 28, 2015 13:53
-
-
Save jabley/a07aa19ad9164d32d4bb to your computer and use it in GitHub Desktop.
Printing out rows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.util.Arrays; | |
| public final class Main { | |
| public static void main(String[] args) { | |
| int[][] rows = new int[18][28]; | |
| for (int[] row : rows) { | |
| System.out.println(Arrays.toString(row)); | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment