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 Homework_1
- {
- class Program
- {
- static void Main(string[] args)
- {
- byte userAge = 20;
- sbyte roomTemperature = 22;
- short playerHealth = 250;
- ushort itemID = 1336;
- int itemPrice = 5000;
- uint money = 16300;
- long playerScore = 250000;
- ulong seedMap = 37145388654;
- float distanceToTarget = 134.5f;
- double chanceWinning = 0.00000073;
- char playerSymbol = 'R';
- string playerName = "Max";
- bool isDoorOpen = false;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement