Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace _08.Employee_Data
- {
- class Program
- {
- static void Main(string[] args)
- {
- string a = Console.ReadLine();
- string b = Console.ReadLine();
- int c = int.Parse(Console.ReadLine());
- char d = char.Parse(Console.ReadLine());
- int e = int.Parse(Console.ReadLine());
- int f = int.Parse(Console.ReadLine());
- string firstName = "Amanda";
- string lastName = "Jonson";
- int age = 27;
- char gender = 'f';
- long personalID = 8306112507;
- int uniqueEmployeeNumber = 2756357;
- Console.WriteLine("First name: {0}",firstName);
- Console.WriteLine("Last name: {0}",lastName);
- Console.WriteLine("Age: {0}" , age);
- Console.WriteLine("Gender: {0}" , gender);
- Console.WriteLine("Personal ID: {0}" , personalID);
- Console.WriteLine("Unique Employee number: {0}" , uniqueEmployeeNumber);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement