-
Notifications
You must be signed in to change notification settings - Fork 0
/
Card.java
46 lines (32 loc) · 786 Bytes
/
Card.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package WarCardGame;
public class Card {
private String name;
private String suit;
private int value;
public Card(String name, String suit, int value) {
this.name = name;
this.suit = suit;
this.value = value;
}
public void setName(String name) {
this.name = name;
}
public void setSuit(String suit) {
this.suit = suit;
}
public void setValue(int value) {
this.value = value;
}
public String getName() {
return name;
}
public String getSuit() {
return suit;
}
public int getValue() {
return value;
}
public void describe(){
System.out.println("Card: " + this.name + " of "+ this.suit + ", Value: " + this.value);
}
}