Advertisement
UraniumGames

Guess the number

Dec 20th, 2023
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.51 KB | None | 0 0
  1. using System;
  2.  
  3. namespace task2
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             Random rand = new Random();
  10.             int _randomInt = rand.Next(0, 100);
  11.  
  12.             int _attempts = 0;
  13.  
  14.             bool _isTrue = false;
  15.  
  16.             Console.WriteLine("------------------------------Добро пожаловать в числовую угадайку------------------------------");
  17.             while (true)
  18.             {
  19.                 Console.Write("Введите число от 0 до 100: ");
  20.  
  21.                 int _number = int.Parse(Console.ReadLine());
  22.                 _isTrue = NumberVerification(_number);
  23.  
  24.                 if (_isTrue)
  25.                 {
  26.                     switch(_number)
  27.                     {
  28.                         case int n when n > _randomInt:
  29.                             Console.WriteLine("------------------------------Ваше число больше загадонного------------------------------");
  30.                             _attempts++;
  31.                             continue;
  32.                         case int n when n < _randomInt:
  33.                             Console.WriteLine("------------------------------Ваше число меньше загадонного------------------------------");
  34.                             _attempts++;
  35.                             continue;
  36.                         case int n when n == _randomInt:
  37.                             _attempts++;
  38.                             Console.WriteLine("------------------------------Вы угадали число, поздравляю!------------------------------");
  39.                             Console.WriteLine($"------------------------------Ваше количество попыток: {_attempts} ------------------------------");
  40.                             Console.ReadKey();
  41.                             break;
  42.                     }
  43.                     break;
  44.                 }
  45.                 else
  46.                 {
  47.                     continue;
  48.                 }
  49.  
  50.             }
  51.         }
  52.  
  53.         static bool NumberVerification(int num)
  54.         {
  55.             if(num >= 0 && num <= 100)
  56.             {
  57.                 return true;
  58.             }
  59.             else
  60.             {        
  61.                 Console.WriteLine("------------------------------А может всё-таки введём целое число от 1 до 100?------------------------------");
  62.                 return false;
  63.             }
  64.         }
  65.     }
  66. }
  67.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement