From d7351fa24db74866fd594723211cd2854c4120eb Mon Sep 17 00:00:00 2001 From: Marcin Badurowicz Date: Fri, 11 Oct 2024 13:15:30 +0200 Subject: [PATCH] more translation --- Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Program.cs b/Program.cs index 5d465ea..47cb712 100644 --- a/Program.cs +++ b/Program.cs @@ -12,9 +12,9 @@ do guess = Convert.ToInt32(Console.ReadLine()); if (guess > value) - Console.WriteLine("Za dużo!"); + Console.WriteLine("Za much!"); else if (guess < value) - Console.WriteLine("Za mało!"); + Console.WriteLine("Za low!"); trials++; } while (guess != value);