bugfix
This commit is contained in:
@@ -97,9 +97,10 @@ main(int argc, char *argv[])
|
|||||||
random_shuffle(&cardsArray[0], &cardsArray[NumCards], rand);
|
random_shuffle(&cardsArray[0], &cardsArray[NumCards], rand);
|
||||||
|
|
||||||
ostringstream oss("");
|
ostringstream oss("");
|
||||||
for (int temp = 0; temp < size_of_array; temp++)
|
for (int temp = 0; temp < NumCards; temp++)
|
||||||
oss << int_array[temp];
|
oss << cardsArray[temp];
|
||||||
cout << oss << endl;
|
cout << oss << endl;
|
||||||
|
}
|
||||||
|
|
||||||
} catch (...) {
|
} catch (...) {
|
||||||
cout << "Exception caught" << endl;
|
cout << "Exception caught" << endl;
|
||||||
|
|||||||
Reference in New Issue
Block a user