Advertisement
Guest User

Untitled

a guest
Nov 20th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.53 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 HW_les1
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             byte one = 1;
  14.             short two = 2;
  15.             int three = 3;
  16.             long four = 4;
  17.             float five = 5.0f;
  18.             double six = 6.0;
  19.             bool seven = true;
  20.             string eight = "8";
  21.             char nine = '9';
  22.             ulong ten = 10;
  23.         }
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement