We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5608460 commit f8802c2Copy full SHA for f8802c2
five.cpp
@@ -2,22 +2,26 @@ struct CARD {
2
int rank;
3
string suit;
4
string color;
5
-} c = { 5, "spades", "black"};
+}
6
+c = {5, "spades", "black"};
7
8
struct CARD {
9
10
11
-} c = { 5, "hearts", "red"};
12
13
+c = {5, "hearts", "red"};
14
15
16
17
18
-} c = { 5, "diamonds", "red"};
19
20
+c = {5, "diamonds", "red"};
21
22
23
24
25
-} c = { 5, "clubs", "black"};
26
27
+c = {5, "clubs", "black"};
0 commit comments