task02.cs 528 B

1234567891011121314
  1. //2
  2. static void Main(string[] args)
  3. {
  4. Console.WriteLine("Введите первую дату в формате ДД.ММ.ГГГГ:");
  5. DateTime A = DateTime.ParseExact(Console.ReadLine(), "dd.MM.yyyy", null);
  6. Console.WriteLine("Введите вторую дату в формате ДД.ММ.ГГГГ:");
  7. DateTime B = DateTime.ParseExact(Console.ReadLine(), "dd.MM.yyyy", null);
  8. TimeSpan timeSpan = B - A;
  9. Console.WriteLine($"Количество дней между {A} и {B}: {timeSpan.Days}");
  10. }