Advertisement
bonumopus

task1

Apr 7th, 2020
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.59 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 firstproject
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             //переменные 5 штук
  14.             byte bVar;
  15.             sbyte sbVar;
  16.             int iVar;
  17.             uint uiVar;
  18.             short shVar;
  19.             //переменные ещё 5 штук
  20.             ushort ushVar;
  21.             long lVar;
  22.             ulong ulVar;
  23.             bool isDoorOpen;
  24.             string strVar;
  25.         }
  26.     }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement