Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Task1
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- int money; //кол-во денег
- byte age; //возраст человека
- float health;
- bool canOpenDoor; //Могу открыть дверь или нет
- string greetings; //приветствие
- ushort inventoryItemsCount; //кол-во предметов в инвентаре
- short reputation; //кол-во репутации
- uint researchPoints; //кол-во очков исследования
- long galaxySize; //размер галактики
- double hitAccuracy; //точность попадания
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement