Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #55.0K
~408 People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for nabil1983

Try this out import java.util.*; import javax.swing.*; public class CdStorage2 { public static void main (String[] args) { CdRecord array; List arrayLst= new ArrayList(); String menu_choice; int menu; while (true) { menu_choice = JOptionPane.showInputDialog("Enter:\n 1: New CD entry\n 2: Print\n 3: Quit"); try { menu = Integer.parseInt(menu_choice); } catch(NumberFormatException ne){ …

Member Avatar for Nandus
0
391

The End.