Compare commits
No commits in common. "b49b777b373536b0c434fb88708255b89b965c0b" and "2dfb7826d32afc07fb7fb56f68130175bb7596ff" have entirely different histories.
b49b777b37
...
2dfb7826d3
@ -8,13 +8,13 @@ int guess;
|
||||
int trials = 0;
|
||||
do
|
||||
{
|
||||
Console.Write("Enter value: ");
|
||||
Console.Write("Wprowadź wartość: ");
|
||||
guess = Convert.ToInt32(Console.ReadLine());
|
||||
|
||||
if (guess > value)
|
||||
Console.WriteLine("Za big!");
|
||||
Console.WriteLine("Za dużo!");
|
||||
else if (guess < value)
|
||||
Console.WriteLine("Za small!");
|
||||
Console.WriteLine("Za mało!");
|
||||
|
||||
trials++;
|
||||
} while (guess != value);
|
||||
|
Loading…
Reference in New Issue
Block a user