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.80K
1 Posted Topic
since all your image files are numbered 1-54 this may save you some space. import javax.swing.*; import java.awt.*; public class RandomCard extends JFrame { int firstRandomCard = 1 + (int)(Math.random() * 54); int secondRandomCard = 1 + (int)(Math.random() * 54); int thirdRandomCard = 1 + (int)(Math.random() * 54); private ImageIcon …
The End.
IrishWay