Advertisement
MustyElbow

Variables

Aug 26th, 2023 (edited)
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.64 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 Variables
  8. {
  9.     internal class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             int money = 1000;
  14.             byte idInAdressTable = 127;
  15.             float rublesInWallet = 130000;
  16.             double resultOfDividingNumbers;
  17.             long millimetersInKilometr;
  18.             short peopleInSchool = 15326;
  19.             ushort peopleInUniversity = 32678;
  20.             string name = "dimsaik";
  21.             char tabulation = '\t';
  22.             bool isAbleToPlay;
  23.         }
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement