IGRODELOFF

Task29

May 14th, 2022 (edited)
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.41 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Task29
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             char startSymbol = '_';
  10.             char symbolHealth = '#';
  11.  
  12.             int health;
  13.             int maxHealth = 10;
  14.             int percentHealthHerro;
  15.             int positionVertical = 5;
  16.             int halfFromWhole = 5;
  17.  
  18.             Console.Write("Введите процент здоровья героя: ");
  19.             percentHealthHerro = Convert.ToInt32(Console.ReadLine());
  20.  
  21.             health = percentHealthHerro / maxHealth;
  22.             if (maxHealth % percentHealthHerro >= halfFromWhole)
  23.             {
  24.                 health++;
  25.             }
  26.             DrawBar(health, maxHealth, positionVertical, startSymbol, symbolHealth);
  27.         }
  28.  
  29.         static void DrawBar(int value, int maxValue, int position, char startSymbolol = ' ', char symbolHealth = ' ')
  30.         {
  31.             Console.Clear();
  32.  
  33.             string bar = "";
  34.  
  35.             for (int i = 0; i < value; i++)
  36.             {
  37.                 bar += symbolHealth;
  38.             }
  39.  
  40.             Console.SetCursorPosition(0, position);
  41.             Console.Write('[');
  42.             Console.Write(bar);
  43.  
  44.             bar = "";
  45.  
  46.             for (int i = value; i < maxValue; i++)
  47.             {
  48.                 bar += startSymbolol;
  49.             }
  50.             Console.Write(bar + ']');
  51.         }
  52.     }
  53. }
Add Comment
Please, Sign In to add comment