From 009a1dd2954f886d44e2da0eeb244c751a125421 Mon Sep 17 00:00:00 2001 From: noorhana123 <72207736+noorhana123@users.noreply.github.com> Date: Fri, 2 Oct 2020 09:53:06 +0530 Subject: [PATCH] Update 02_casino.cpp --- C++/02_casino.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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