Advertisement
maus234

Untitled

Aug 14th, 2021
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.65 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 Leson01
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.  
  14.             int numberOfLives = 5;
  15.             double factorySalary = 30000.5;
  16.             bool walking = false;
  17.             string userMessages = "Want to eat";
  18.             char characterFromUser = ')';
  19.             long cardNumber = 75545656454;
  20.             float buildersSalary = 12454.75f;
  21.             byte numberOfPlayers = 234;
  22.             sbyte amountOfMoney = -50;
  23.             ushort roadLength = 5657;
  24.  
  25.         }
  26.     }
  27. }
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement