Advertisement
rosenrusev

Problem 11 - Employee Data

Mar 11th, 2014
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace EmployeeData
  7. {
  8. class EmployeeData
  9. {
  10. static void Main()
  11. {
  12. string firstName = "John";
  13. string lastName = "Smith";
  14. byte age = 18;
  15. string gender = "male";
  16. long personIDNumber = 8306112507L;
  17. string uniqueEmployeeID = "2756000892327569999";
  18. Console.WriteLine("The Employee {0} {1} is {2} years old he is from gender {3}\n His Personal ID Number is {4} and his Unique\n Employee ID is {5}", firstName, lastName, age, gender, personIDNumber, uniqueEmployeeID);
  19. }
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement