From f4602d1bb59359f4bf5e7a6470834d1bb44500dd Mon Sep 17 00:00:00 2001 From: Arity-T Date: Sun, 10 Nov 2024 01:45:01 +0300 Subject: [PATCH] =?UTF-8?q?=D0=92=D1=8B=D0=B2=D0=BE=D0=B4=20=D0=BE=D1=87?= =?UTF-8?q?=D0=BA=D0=BE=D0=B2=20=D0=BA=D0=BE=D1=80=D1=80=D1=80=D0=B5=D0=BA?= =?UTF-8?q?=D1=82=D0=BD=D1=8B=D0=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lab2/prisoner/game.hs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lab2/prisoner/game.hs b/lab2/prisoner/game.hs index b6879c7..96adbfe 100644 --- a/lab2/prisoner/game.hs +++ b/lab2/prisoner/game.hs @@ -54,5 +54,6 @@ computerMoves = game playerMoves gameStrategy main :: IO () main = do putStrLn $ "Ходы компьютера: " ++ computerMoves - putStrLn $ "Очки: " ++ show score1 ++ " - " ++ show score2 + putStrLn $ "Годы заключения: " + ++ show score1 ++ " (игрок) - " ++ show score2 ++ " (компьютер)"