Skip to content

Instantly share code, notes, and snippets.

@jabley
Created February 28, 2015 13:53
Printing out rows
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