Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Calcolate1000DayOnEarth
- {
- class Calcolate1000DayOnEarth
- {
- static void Main()
- {
- string dt = Console.ReadLine();
- DateTime date = DateTime.ParseExact(dt, "dd-MM-yyyy",null);
- DateTime after = date.AddDays(999);
- Console.WriteLine(after.ToString("dd-MM-yyyy"));
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement