start translating
This commit is contained in:
parent
b5f79b1c29
commit
fe779369f4
@ -8,13 +8,13 @@ int guess;
|
|||||||
int trials = 0;
|
int trials = 0;
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
Console.Write("Wprowadź wartość: ");
|
Console.Write("Enter value: ");
|
||||||
guess = Convert.ToInt32(Console.ReadLine());
|
guess = Convert.ToInt32(Console.ReadLine());
|
||||||
|
|
||||||
if (guess > value)
|
if (guess > value)
|
||||||
Console.WriteLine("Za dużo!");
|
Console.WriteLine("Za big!");
|
||||||
else if (guess < value)
|
else if (guess < value)
|
||||||
Console.WriteLine("Za mało!");
|
Console.WriteLine("Za small!");
|
||||||
|
|
||||||
trials++;
|
trials++;
|
||||||
} while (guess != value);
|
} while (guess != value);
|
||||||
|
Loading…
Reference in New Issue
Block a user