Skip to content

Instantly share code, notes, and snippets.

@Nikola-Andreev
Created May 23, 2016 20:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Nikola-Andreev/429fd6990be46d8e22746c090ac86999 to your computer and use it in GitHub Desktop.
Save Nikola-Andreev/429fd6990be46d8e22746c090ac86999 to your computer and use it in GitHub Desktop.
string firstName = Console.ReadLine();
string lastName = Console.ReadLine();
byte age = byte.Parse (Console.ReadLine());
char gender = char.Parse (Console.ReadLine());
long personalId=long.Parse (Console.ReadLine());
int number = int.Parse(Console.ReadLine());
Console.WriteLine("First name: {0}",firstName);
Console.WriteLine("Last name: {0}",lastName);
Console.WriteLine("Age: {0}",age);
Console.WriteLine("Gender: f",gender);
Console.WriteLine("Personal ID: {0}",personalId);
Console.WriteLine("Unique Employee number: {0}",number);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment