Skip to content

Instantly share code, notes, and snippets.

@EntaltsevSN
Created September 18, 2023 20:01
Show Gist options
  • Save EntaltsevSN/a9c853ddba6e3afcc223f16f199c5bbd to your computer and use it in GitHub Desktop.
Save EntaltsevSN/a9c853ddba6e3afcc223f16f199c5bbd to your computer and use it in GitHub Desktop.
You got dam right! Or not...
int magicNumber = 4;
Console.WriteLine("Угадай число");
Console.WriteLine();
Console.WriteLine("Загадано число от 1 до 5. Попробуйте его отгадать!");
Console.WriteLine();
Console.Write("Введите ваше число: ");
int input = Convert.ToInt32(Console.ReadLine());
Console.WriteLine();
if (input == magicNumber)
{
Console.WriteLine("Да! Это число " + magicNumber + "!");
}
else {
Console.WriteLine("Нет! Это не " + input + "!");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment