public static void Main()
Console.WriteLine("Task 4 - Menu System\n");
int[] options = new int[3];
Console.WriteLine("\n\n********List of Options*********");
Console.WriteLine("1. User's Name, Age, Gender and Address");
Console.WriteLine("2. Two Numbers Calculation");
Console.WriteLine("3. User's First and Second Name");
Console.Write("\n\nPlease, according to the list of options above, choose the task you want to run (1, 2, 3): ");
int choice = int.Parse(Console.ReadLine());
Console.WriteLine("\nYou chose the Task 1 - User's Name, Age, Gender and Address\n");
Console.WriteLine("Hello. What's your name?");
string name = Console.ReadLine();
Console.WriteLine("\nHello {0}. How old are you? (enter only numbers, please)", name);
int age = int.Parse(Console.ReadLine());
Console.WriteLine("\nPlease, what's yor gender (male or female)?");
string gender = Console.ReadLine();
Console.WriteLine("\nCould you please type you address?");
string address = Console.ReadLine();
Console.WriteLine("\nPlease, check if your personal data is correct");
Console.WriteLine("{0}, {1} years old, {2}, and your address is {3}", name, age, gender, address);
Console.WriteLine("\nYou chose the Task 2 - 2 Numbers Calculation\n");
Console.Write("\nPlease, type a number (n1): ");
n1 = float.Parse(Console.ReadLine());
Console.Write("\nType another number (n2): ");
n2 = float.Parse(Console.ReadLine());
Console.WriteLine("\n\nThe results of the two numbers that you entered are:");
Console.WriteLine("\nAddition: n1 + n2 = " + (n1 + n2));
Console.WriteLine("Multiplication: n1 * n2 = " + n1 * n2);
Console.WriteLine("Division: n1 / n2 = " + n1 / n2);
Console.WriteLine("Subtraction: n1 - n2 = " + (n1 - n2));
Console.Write("\n\nPlease, choose the operation you wanto to perfome - multiplication (M), division (D), addition (A) or subtraction (S): ");
string operation = Console.ReadLine();
Console.WriteLine("Multiplication: n1 * n2 = " + n1 * n2);
} else if (operation == "D")
Console.WriteLine("Division: n1 / n2 = " + n1 / n2);
} else if (operation == "A")
Console.WriteLine("\nAddition: n1 + n2 = {0} + {1}", n1, n2);
else if (operation == "S")
Console.WriteLine("Subtraction: n1 - n2 = " + (n1 - n2));
Console.WriteLine("\nYou chose the Task 3 - User's First and Second Name\n");
Console.WriteLine("Hi. Please, type your first name");
Fname = Console.ReadLine();
Console.WriteLine("Type your second name");
Secn = Console.ReadLine();
Console.WriteLine("Your full name is {0} {1}", Fname, Secn);
Console.WriteLine("\n***This is an unknown task number. Please, enter only 1, 2 or 3.");