Advertisement
MayloGreen

Variables

Mar 4th, 2021 (edited)
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.55 KB | None | 0 0
  1. using System;
  2.  
  3. namespace DZ_variables
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int myAge = 25;
  10.             string myName = "Михаил";
  11.             bool canFly = false;
  12.             char firstLetterOfMyName = 'М';
  13.             double dayAndMonth = 04.03;
  14.             short numberOfDaysInYear = 365;
  15.             long areaOfRussia = 17100000;
  16.             uint distanceToMoon = 384403;
  17.             float myGrowth = 1.80f;
  18.             sbyte temperatureInNorilskInWinter = -60;
  19.  
  20.  
  21.  
  22.         }
  23.     }
  24. }
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement