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 #72.9K
2 Posted Topics
Re: New to Java
I think what would be helpful to start is not your code but your algorithm; better, what exactly it is that your program is supposed to do. For example, let's say that the program is supposed to accept an input in euro cents, and comes up with a list of …
I looked at your program, and found only two problems. First off, something simple, and probably not your fault. In your collectCard method: [code] void collectCard(Card c) { wonPile.addCard©; } [/code] Whatever compiler or word processor you used to type this in has changed the instance of (c) in wonPile.addCard(c); …
The End.
DrCruel