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 #72.8K
~597 People Reached
Favorite Forums
Favorite Tags
java x 2

2 Posted Topics

Member Avatar for dina
Member Avatar for gagirl14

public class Card { private int rank; private int suit; public Card() { suit = (int)Math.floor(Math.random() * (4-1) + 0.5) +4; rank = (int)Math.floor(Math.random() * (14-2) + 0.5) +14; } public Card(int r, int s) { if (r>=2 && r<=14) rank = r; else rank = 14; if (s>=1 && …

Member Avatar for malaya_champ
0
112

The End.