Advertisement
Guest User

Untitled

a guest
May 15th, 2017
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 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 _08.Employee_Data
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.  
  14.             string a = Console.ReadLine();
  15.             string b = Console.ReadLine();
  16.             int c = int.Parse(Console.ReadLine());
  17.             char d = char.Parse(Console.ReadLine());
  18.             int e = int.Parse(Console.ReadLine());
  19.             int f = int.Parse(Console.ReadLine());
  20.  
  21.             string firstName = "Amanda";
  22.             string lastName = "Jonson";
  23.             int age = 27;
  24.             char gender = 'f';
  25.             long personalID = 8306112507;
  26.             int uniqueEmployeeNumber = 2756357;
  27.  
  28.  
  29.             Console.WriteLine("First name: {0}",firstName);
  30.             Console.WriteLine("Last name: {0}",lastName);
  31.             Console.WriteLine("Age: {0}" , age);
  32.             Console.WriteLine("Gender: {0}" , gender);
  33.             Console.WriteLine("Personal ID: {0}" , personalID);
  34.             Console.WriteLine("Unique Employee number: {0}" , uniqueEmployeeNumber);
  35.  
  36.         }
  37.     }
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement