words per minute
4
Unlosing
00:00
Speed
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Pick_the_right_door
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Do your prefer door 1, 2, or 3?");
string userValue = Console.ReadLine();
if (userValue == "1")
{
Console.WriteLine("You picked the door of death");
Console.ReadLine();
}
else if (userValue == "2")
{
Console.WriteLine("You picked the door of death");
Console.ReadLine();
}
else if (userValue == "3")
{
Console.WriteLine("YOu picked the lucky door");
Console.ReadLine();
}
else
{
Console.WriteLine("Sorry, we didn't recognize your input. Please use the numbers given.");
Console.ReadLine();
}
}
}
}