Merge branch 'translation'
This commit is contained in:
commit
f34f41c9e5
@ -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 much!");
|
||||
else if (guess < value)
|
||||
Console.WriteLine("Za mało!");
|
||||
Console.WriteLine("Za low!");
|
||||
|
||||
trials++;
|
||||
} while (guess != value);
|
||||
|
Loading…
Reference in New Issue
Block a user