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 #107.41K
~5K People Reached
Favorite Forums
Favorite Tags
java x 1
Member Avatar for Darkfoxx

Here is the full code thus far: [CODE] public class Cardmain { public static void main (String[] args) { War wargame = new War(); wargame.play(); } } class Deck { static final int numberOfCards = 52; Card[] cards = new Card[numberOfCards]; int index; public Deck() { // Constructs all 52 …

Member Avatar for peter_budo
0
5K