Advertisement
RedFlys

Home Work 1.1

Oct 22nd, 2019 (edited)
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.46 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 ConsoleApp1
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             short s;
  14.             ushort us;
  15.             int i;
  16.             uint ui;
  17.             long l;
  18.             ulong ul;
  19.             string st;
  20.             char ch;
  21.             float fl;
  22.             double db;
  23.         }
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement