Aliendreamer

lawful age

Jun 11th, 2018
663
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.42 KB | None | 0 0
  1. using System;
  2. using System.Globalization;
  3.  
  4.  
  5.    public  class Program
  6.     {
  7.        public  static void Main(string[] args)
  8.         {
  9.             string pattern = "d-M-yyyy";
  10.             string tostringpattern="dd-MM-yyyy";
  11.             DateTime birth =DateTime.ParseExact(Console.ReadLine(),pattern,CultureInfo.InvariantCulture);          
  12.             birth=birth.AddYears(18);
  13.             Console.WriteLine(birth.ToString(tostringpattern));
  14.         }
  15.     }
Advertisement
Add Comment
Please, Sign In to add comment