Advertisement
YavorGrancharov

Day_of_Week

May 25th, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.47 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Globalization;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7.  
  8. namespace Day_of_Week
  9. {
  10.     class Program
  11.     {
  12.         static void Main(string[] args)
  13.         {
  14.             string dateText = Console.ReadLine();
  15.             DateTime date = DateTime.ParseExact(dateText, "d-M-yyyy", CultureInfo.InvariantCulture);
  16.             Console.WriteLine(date.DayOfWeek);
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement