Advertisement
gospod1978

Object and Class/Day of Week

Oct 24th, 2019
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.49 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. using System.Text.RegularExpressions;
  6. using System.Globalization;
  7.  
  8. namespace fundamental14
  9. {
  10.     class MainClass
  11.     {
  12.         public static void Main()
  13.         {
  14.  
  15.  
  16.             string dataAsText = Console.ReadLine();
  17.             DateTime date = DateTime.ParseExact(dataAsText, "d-M-yyyy",
  18.             CultureInfo.InvariantCulture);
  19.             Console.WriteLine(date.DayOfWeek);
  20.         }
  21.     }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement