Advertisement
maus234

Untitled

Aug 13th, 2021
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.67 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.  
  15.             int numberOfLives = 5;
  16.  
  17.             double factorySalary = 30000.5;
  18.  
  19.             bool walking = false;
  20.  
  21.             string userMessages = "Want to eat";
  22.  
  23.             char characterFromUser = ')';
  24.  
  25.             long cardNumber = 75545656454;
  26.  
  27.             float buildersSalary = 12454.75f;
  28.  
  29.             byte downloadgames = 234;
  30.  
  31.             sbyte amountOfMoney = -50;
  32.  
  33.             ushort roadLength = 5657;
  34.  
  35.  
  36.         }
  37.     }
  38. }
  39.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement