Ok say I have Multidimensional array that I want to display in JOptionPane.showMessageDialog
. I know that when using System.out.println
, you use a for loop. However the array size is determined by the user input, therefore I have to use a incrementor.
For example: userinput[k]
next to usernumber[k]
then the next row would be userinput[k+1]
next to usernumber[k+1]
The trouble I am having is that by using my loop, it does each set one at a time in separate windows and not all together in a table in one window.
for (int k = 0; k < userinput.length; k++){
JOptionPane.showMessageDialog(null, userinput[k]);
}
for (int k = 0; k < 2; k++){
JOptionPane.showMessageDialog(null, usernumber[k]);
}