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
~219 People Reached
Favorite Forums
Favorite Tags
java x 2
Member Avatar for albert1901

Hi everyone, I have a system where a user can order some predefined items. To do this, I have been using a switch statement, e.g: [CODE] System.out.println("Product?"); System.out.println("\n1. Chair\n2. Table\n3. Desk\n4. Other"); int sel = 0; sel = console.nextInt(); switch(sel){ case 1: <code> case 2: <code> case 3: <code> [/CODE] …

Member Avatar for sennat_26
0
141
Member Avatar for albert1901

Hello everyone, I am developing an application which makes use of abstract classes. I am trying to create a switch statement, which I have placed in the abstract class as all the subclasses can use this. I would like to refer back to this statement in a scanner which is …

Member Avatar for ~s.o.s~
0
78