Use your if statement and switch knowledge to build an interactive console menu. The program should display options, read the user's choice, and respond accordingly.
YOUR TASK
Create a program that:
Displays a menu: 1. Profile, 2. Settings, 3. Exit
Reads the user's choice with Console.ReadLine()
Uses a switch to respond to each option
Prints a message like Opening profile...
Handles invalid input with a default case
Need a hint?
Step-by-step:
1. Print each menu option with Console.WriteLine()
2. Read input: string choice = Console.ReadLine();
3. Use switch (choice) { case "1": ... break; ... default: ... }
4. Each case prints an appropriate response
Console initialized...
Ready for Project 2: Menu Navigator
> Test your code with the "Check My Code" button
> When it passes, the Complete button will activate!