Skip to content

Instantly share code, notes, and snippets.

@SZanlongo
Last active August 29, 2015 14:10
Show Gist options
  • Save SZanlongo/8405013d1c498f764493 to your computer and use it in GitHub Desktop.
Save SZanlongo/8405013d1c498f764493 to your computer and use it in GitHub Desktop.
public void printGraph(double[][] array, int n) {
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
System.out.println(array[i][j]);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment