Advertisement
grigorb57

1000 Days after birth.

Jan 22nd, 2018
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.46 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Globalization;
  7.  
  8.  
  9. namespace ConsoleApp8
  10. {
  11.     class Program
  12.     {
  13.         static void Main(string[] args)
  14.         {
  15.             DateTime birthDay = DateTime.ParseExact(
  16.                 Console.ReadLine(), "dd-MM-yyyy",null);
  17.  
  18.             Console.WriteLine(birthDay.AddDays(999).ToString("dd-MM-yyyy"));
  19.         }
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement