This commit is contained in:
Kai Philipp
2020-01-25 17:17:41 +01:00
parent b03d39d141
commit 1ff513e09a
+2 -1
View File
@@ -98,9 +98,10 @@ main(int argc, char *argv[])
random_shuffle(&cardsArray[0], &cardsArray[NumCards], rand);
ostringstream oss("");
for (int temp = 0; temp < NumCards; temp++)
for (int temp = 0; temp < NumCards; temp++){
if(temp > 0) cout << ",";
cout << cardsArray[temp];
}
cout << endl;
}