diff --git a/C++/02_casino.cpp b/C++/02_casino.cpp index dd1fd05..4eec0fa 100644 --- a/C++/02_casino.cpp +++ b/C++/02_casino.cpp @@ -24,7 +24,7 @@ void msg(string m) void end(int init, int now) { if (init == now) - cout << "\n\nYou have no gain and no loss."; + cout << "\n\nYou have no gain and no loss."; else if (init > now) cout << "\n\nYou lost " << init - now; else