Your or You're.sln
Dark Lust (53.2347,75.4342,1008.76)
namespace YOUR_Correction
{
public class TheUltimateCorrectionSinceYouMadeTheMistake
{
static string? TheTextYouWrote = Console.ReadLine();
public TheUltimateCorrectionSinceYouMadeTheMistake()
{
}
static void Main()
{
while (true)
{
if (TheTextYouWrote == "You're" || TheTextYouWrote == "Your")
{
Console.WriteLine("(Y)/(y)ou(')(r)(')(a)-(re) \n Write this so i can atleast choose..");
}
else if (TheTextYouWrote == "Youre" || TheTextYouWrote == "You'are")
{
Console.WriteLine("Please don't talk to me and LEARN THIS!!!");
}
else
{
Console.WriteLine("I don't know what you have written but thats TOTALLY wrong if it should be a You're or Your!!!");
}
TheTextYouWrote = Console.ReadLine();
}
}
}
}
