Skip to content

Commit f8802c2

Browse files
committed
update Five
1 parent 5608460 commit f8802c2

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

five.cpp

+8-4
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,26 @@ struct CARD {
22
int rank;
33
string suit;
44
string color;
5-
} c = { 5, "spades", "black"};
5+
}
6+
c = {5, "spades", "black"};
67

78
struct CARD {
89
int rank;
910
string suit;
1011
string color;
11-
} c = { 5, "hearts", "red"};
12+
}
13+
c = {5, "hearts", "red"};
1214

1315
struct CARD {
1416
int rank;
1517
string suit;
1618
string color;
17-
} c = { 5, "diamonds", "red"};
19+
}
20+
c = {5, "diamonds", "red"};
1821

1922
struct CARD {
2023
int rank;
2124
string suit;
2225
string color;
23-
} c = { 5, "clubs", "black"};
26+
}
27+
c = {5, "clubs", "black"};

0 commit comments

Comments
 (0)