Advertisement
Saviaa

Assignment2

Jun 20th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.50 KB | None | 0 0
  1. using System;
  2.  
  3. class MainClass {
  4.   public static void Main (string[] args) {
  5.  
  6.  
  7. Console.Write("Enter the day: ");
  8. int day = int.Parse(Console.ReadLine());
  9. Console.Write("Enter the month: ");
  10. int month = int.Parse(Console.ReadLine());
  11. Console.Write("Enter the year: ");
  12. int year = int.Parse(Console.ReadLine());
  13.  
  14. DateTime inputtedDate = new DateTime(year, month, day);
  15. string formattedDate = string.Format("{0:dddd}", inputtedDate);
  16.   Console.WriteLine("This day should be "+ formattedDate);
  17.  
  18.   }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement