Code:
package opgave4.1;
import javax.swing.JOptionPane;
public class Opgave4.1 {
public static void main(String[] args) {
printInOptionPane(new int[8][8]);
}
public static void printInOptionPane(int[][] blastTable) {
short k = 32;
String output = "";
for (int i = 0; i < 8; i++){
for (int j = 0; j < 8; j++){
output = output + k-- + " ";
}
output = output + "\n";
}
JOptionPane.showMessageDialog(null, output, "blastTable", JOptionPane.INFORMATION_MESSAGE);
System.exit(0);
}
}
Als ik het deel t/m output uit de method haal kent hij hem later niet. Laat ik dat deel staan zit hij niet meer in de loop. Ik kom er dus niet echt uit