kirililchev3

Day of week

Jun 13th, 2018
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.37 KB | None | 0 0
  1. using System;
  2. using System.Globalization;
  3.  
  4. namespace ConsoleApp1
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             string dateAsText = Console.ReadLine();
  11.             DateTime date = DateTime.ParseExact(dateAsText, "d-M-yyyy", CultureInfo.InvariantCulture);
  12.             Console.WriteLine(date.DayOfWeek);
  13.         }
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment