-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPickACard.java
28 lines (28 loc) · 1.01 KB
/
PickACard.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
public class PickACard{
public static void main(String[] args){
int suit = (int)(Math.random() * 4);
int rank = (int)(Math.random() * 13 + 1);
System.out.print("The card you picked is ");
switch (rank){
case 1: System.out.print("Ace "); break;
case 2: System.out.print("Two "); break;
case 3: System.out.print("Three "); break;
case 4: System.out.print("Four "); break;
case 5: System.out.print("Five "); break;
case 6: System.out.print("Six "); break;
case 7: System.out.print("Seven "); break;
case 8: System.out.print("Eight "); break;
case 9: System.out.print("Nine "); break;
case 10: System.out.print("Ten "); break;
case 11: System.out.print("Jack "); break;
case 12: System.out.print("Queen "); break;
case 13: System.out.print("King "); break;
}
switch (suit){
case 0: System.out.println("of Hearts."); break;
case 1: System.out.println("of Spades."); break;
case 2: System.out.println("of Diamonds."); break;
case 3: System.out.println("of Clubs."); break;
}
}
}