VelizarAvramov

Employee Data

Mar 22nd, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.63 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _10_Employee_Data
  4. {
  5.     class EmployeeData
  6.     {
  7.         static void Main()
  8.         {
  9.             string FirstName = "Amanda";
  10.             string LastName = "Jonson";
  11.             byte Age = 27;
  12.             char Gender = 'f';
  13.             long PersonaID = 8306112507;
  14.             ulong Unique_Employee_number = 275600027569999;
  15.             Console.WriteLine(FirstName);
  16.             Console.WriteLine(LastName);
  17.             Console.WriteLine(Age);
  18.             Console.WriteLine(Gender);
  19.             Console.WriteLine(PersonaID);
  20.             Console.WriteLine(Unique_Employee_number);
  21.         }
  22.     }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment