Okay, I'm working on this program and I'm having problems with JOptionPane. Here's what I've got:
//display results
JOptionPane.showMessageDialog(
null, "Name: " + name1, "Gross pay",
JOptionPane.INFORMATION_MESSAGE );
What would I use if I want to include more results under the line that displays the name. Overall, I want to include the Gross Pay total and then the same results for two more users. Any help is appreciated. Thanks,
Jeff