KpucTaJl

Переменные

Aug 28th, 2023
1,119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.51 KB | None | 0 0
  1. namespace CSLight
  2. {
  3.     internal class Program
  4.     {
  5.         static void Main(string[] args)
  6.         {
  7.             byte firstVariable = 1;
  8.             short secondVariable = 2;
  9.             int thirdVariable = 3;
  10.             long fourthVariable = 4;
  11.             float fifthVariable = 5.0f;
  12.             double sixthVariable = 6.0;
  13.             char seventhVariable = '7';
  14.             string eighthVariable = "8";
  15.             ulong ninthVariable = 9;
  16.             bool tenthVariable = true;
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment