Nobody is going to baby you through your projects. Start by asking some specific questions. If you don't know any Java programming I suggest you read a tutorial or three.
BestJewSinceJC
Posting Maven
2,772 posts since Sep 2008
Reputation Points: 874
Solved Threads: 354
Did you write any code yet?
BestJewSinceJC
Posting Maven
2,772 posts since Sep 2008
Reputation Points: 874
Solved Threads: 354
And use code tags. Read the forum rules.
BestJewSinceJC
Posting Maven
2,772 posts since Sep 2008
Reputation Points: 874
Solved Threads: 354
but if you do that, don't use:
switch(choice){
case 1: //your code
break;
case 2: // your code
break;
case 3: // your code
break;
}
simply, because if you enter 'A', 'B' or 'C', the switch will never have
the values '1' '2' or '3'.
stultuske
Posting Sensei
3,110 posts since Jan 2007
Reputation Points: 1,114
Solved Threads: 432