From 2e86c21a4e8912c7a5028268d37e0b3acbe970de Mon Sep 17 00:00:00 2001 From: Marcin Badurowicz Date: Fri, 11 Oct 2024 13:07:27 +0200 Subject: [PATCH 1/2] start translating --- Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index ae37692..5d465ea 100644 --- a/Program.cs +++ b/Program.cs @@ -8,7 +8,7 @@ int guess; int trials = 0; do { - Console.Write("Wprowadź wartość: "); + Console.Write("Enter value: "); guess = Convert.ToInt32(Console.ReadLine()); if (guess > value) From d7351fa24db74866fd594723211cd2854c4120eb Mon Sep 17 00:00:00 2001 From: Marcin Badurowicz Date: Fri, 11 Oct 2024 13:15:30 +0200 Subject: [PATCH 2/2] 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);