AlexRaynor

1 Task

Aug 21st, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.61 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace ConsoleApp13
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             int Health = 100;
  14.             float Armor = 50f;
  15.             bool is_Undead = false;
  16.             char index = 'A';
  17.             sbyte fireResist = -50;
  18.             short frostResist_1 = 10;
  19.             String name = "Bot";
  20.             long bossHealth = 92222387645299;
  21.             double lightningResist = 24.5;
  22.             decimal price = 10.95m;
  23.  
  24.  
  25.         }
  26.     }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment