Advertisement
bacco

Employee Data

May 22nd, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.73 KB | None | 0 0
  1. using System;
  2.  
  3. namespace EmployeeData
  4. {
  5.     class MainClass
  6.     {
  7.         public static void Main(string[] args)
  8.         {
  9.             string firstName = "Amanda";
  10.             string lastName = "Jonson";
  11.             byte age = 27;
  12.             char gender = 'f';
  13.             string id = "8306112507";
  14.             string employeeNumber = "27563571";
  15.  
  16.             Console.WriteLine("First name: {0}", firstName);
  17.             Console.WriteLine("Last name: {0}", lastName);
  18.             Console.WriteLine("Age: {0}", age);
  19.             Console.WriteLine("Gender: {0}", gender);
  20.             Console.WriteLine("Personal ID: {0}", id);
  21.             Console.WriteLine("Unique Employee number: {0}", employeeNumber);
  22.         }
  23.     }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement