From 3829dd80048ebc64435de390f225bd569c696dab Mon Sep 17 00:00:00 2001 From: Marcin Badurowicz Date: Mon, 14 Oct 2024 10:07:54 +0200 Subject: [PATCH] some translation --- Program.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Program.cs b/Program.cs index 2448599..e7ec973 100644 --- a/Program.cs +++ b/Program.cs @@ -8,18 +8,18 @@ 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 high!"); else if (guess < value) - Console.WriteLine("Za mało!"); + Console.WriteLine("Za low!"); trials++; } while (guess != value); -Console.WriteLine($"Wygrana w {trials} próbie!"); +Console.WriteLine($"Win w {trials} próbie!"); Console.Write("Podaj swoje imię: "); var name = Console.ReadLine();