Created
January 31, 2024 05:22
-
-
Save soheil-moonesi/00b8584d9be18f3663c73bc0f8e027c9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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