From fe779369f419833dedb15ddfd6dce0a33c29fbf5 Mon Sep 17 00:00:00 2001 From: Marcin Badurowicz Date: Fri, 11 Oct 2024 10:41:52 +0200 Subject: [PATCH] start translating --- Program.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Program.cs b/Program.cs index 338580f..f787f67 100644 --- a/Program.cs +++ b/Program.cs @@ -8,13 +8,13 @@ int guess; int trials = 0; do { - Console.Write("Wprowadź wartość: "); + Console.Write("Enter value: "); guess = Convert.ToInt32(Console.ReadLine()); if (guess > value) - Console.WriteLine("Za dużo!"); + Console.WriteLine("Za big!"); else if (guess < value) - Console.WriteLine("Za mało!"); + Console.WriteLine("Za small!"); trials++; } while (guess != value);