Using JOptionPane, I want to display in one window:
1: ***
2: *****
etc
where 1 is the element of the array, and the * are a percentage calculated in a loop. My variables are all being input fine, but the output is 100+ windows:
1:
*
*
*
2:
*
etc.
The CLI way would be with print() and println(), but I'm having a tough getting it to be visual.