Advertisement
Guest User

1.1

a guest
Aug 22nd, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.82 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 CSLight12_День1
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             byte color1;        //1
  14.             sbyte color2;       //2
  15.             short num1_1;       //3
  16.             ushort num1_2;      //4
  17.             int num2_1;         //5
  18.             uint num2_2;        //6
  19.             long num3_1;        //7
  20.             ulong num3_2;       //8
  21.             //
  22.             float dot;          //9
  23.             double longdot;     //10
  24.             decimal logestdot;  //11
  25.             //
  26.             char symbol;        //12
  27.             string symbols;     //13
  28.             //
  29.             bool truth_or_n0tTrush;         //14
  30.         }
  31.     }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement