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
1 Posted Topic
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){ …
The End.
Nandus