Skip to content

Instantly share code, notes, and snippets.

@soheil-moonesi
Created January 31, 2024 05:22
Show Gist options
  • Save soheil-moonesi/00b8584d9be18f3663c73bc0f8e027c9 to your computer and use it in GitHub Desktop.
Save soheil-moonesi/00b8584d9be18f3663c73bc0f8e027c9 to your computer and use it in GitHub Desktop.
string day = Console.ReadLine();
switch (day)
{
case "sunday":
Console.WriteLine("today is sunday");
break;
case "monday":
Console.WriteLine("today is monday");
break;
default:
Console.WriteLine("i just know sunday and monday :D");
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment