Advertisement
Guest User

Untitled

a guest
Oct 10th, 2016
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. using System;
  2. namespace Calcolate1000DayOnEarth
  3. {
  4. class Calcolate1000DayOnEarth
  5. {
  6. static void Main()
  7. {
  8. string dt = Console.ReadLine();
  9. DateTime date = DateTime.ParseExact(dt, "dd-MM-yyyy",null);
  10. DateTime after = date.AddDays(999);
  11. Console.WriteLine(after.ToString("dd-MM-yyyy"));
  12. }
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement