Transate to english #1

Merged
marcinb merged 1 commits from fix2 into master 2024-10-11 09:11:00 +00:00
Showing only changes of commit e559eb8f4b - Show all commits

View File

@ -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);